8000 Merge pull request #1 from rogerclarkmelbourne/master · ArduinoWorks/Arduino_STM32@de56edb · GitHub
[go: up one dir, main page]

Skip to content

Commit de56edb

Browse files
Merge pull request rogerclarkmelbourne#1 from rogerclarkmelbourne/master
Changed serial upload speed to 115200 as this speed is compatible wit…
2 parents 15d12be + c5ed889 commit de56edb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tools/linux/serial_upload

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
$(dirname $0)/stm32flash/stm32flash -g 0x8000000 -b 230400 -w "$4" /dev/"$1"
2+
$(dirname $0)/stm32flash/stm32flash -g 0x8000000 -b 115200 -w "$4" /dev/"$1"

tools/linux64/serial_upload

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
$(dirname $0)/stm32flash/stm32flash -g 0x8000000 -b 230400 -w "$4" /dev/"$1"
2+
$(dirname $0)/stm32flash/stm32flash -g 0x8000000 -b 115200 -w "$4" /dev/"$1"

tools/macosx/serial_upload

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
$(dirname $0)/stm32flash/stm32flash -g 0x8000000 -b 230400 -w "$4" /dev/"$1"
2+
$(dirname $0)/stm32flash/stm32flash -g 0x8000000 -b 115200 -w "$4" /dev/"$1"

tools/win/serial_upload.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd %~dp0
88
rem: the two line below are needed to fix path issues with incorrect slashes before the bin file name
99
set str=%4
1010
set str=%str:/=\%
11-
stm32flash -g 0x8000000 -b 230400 -w %str% %1
11+
stm32flash -g 0x8000000 -b 115200 -w %str% %1
1212
rem: C:\Python27\python.exe stm32loader.py -e -w -p %1 -g -b 115200 %str%
1313

1414
rem: ------------- use STM's own uploader

0 commit comments

Comments
 (0)
0