Skip to content

Commit 50fa24b

Browse files
committed
1 parent 5e8c676 commit 50fa24b

28 files changed

+12
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.o
2+
*.swp

linux/stlink/lib/libstlink-shared.so

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libstlink-shared.so.1
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libstlink-shared.so.1.3.0
91.1 KB
Binary file not shown.

linux/stlink/lib/libstlink.a

104 KB
Binary file not shown.

linux/stlink/st-flash

-152 KB
Binary file not shown.

linux/stlink/st-info

-155 KB
Binary file not shown.

linux/stlink/st-term

-140 KB
Binary file not shown.

linux/stlink/st-util

-175 KB
Binary file not shown.

linux/stlink_upload

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
2+
LD_LIBRARY_PATH=$(dirname $0)/stlink/lib
23
if [ `uname -m` == "x86_64" ]; then
3-
$(dirname $0)/../linux64/stlink/st-flash write "$4" 0x8000000
4+
$(dirname $0)/../linux64/stlink_upload $*
45
else
56
$(dirname $0)/stlink/st-flash write "$4" 0x8000000
67
fi
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libstlink-shared.so.1
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libstlink-shared.so.1.3.0
90.1 KB
Binary file not shown.

linux64/stlink/lib/libstlink.a

126 KB
Binary file not shown.

linux64/stlink/st-flash

-212 KB
Binary file not shown.

linux64/stlink/st-info

-214 KB
Binary file not shown.

linux64/stlink/st-term

-191 KB
Binary file not shown.

linux64/stlink/st-util

-252 KB
Binary file not shown.

linux64/stlink_upload

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
LD_LIBRARY_PATH=$(dirname $0)/stlink/lib
23
$(dirname $0)/stlink/st-flash write "$4" 0x8000000
34
exit 0
45

145 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libstlink-shared.1.3.0.dylib
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libstlink-shared.1.dylib

macosx/stlink/lib/libstlink.a

99.9 KB
Binary file not shown.

macosx/stlink/st-flash

66.4 KB
Binary file not shown.

macosx/stlink/st-info

70.2 KB
Binary file not shown.

macosx/stlink/st-term

-67.2 KB
Binary file not shown.

macosx/stlink/st-util

85.4 KB
Binary file not shown.

macosx/stlink_upload

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#!/bin/bash
2+
DYLD_LIBRARY_PATH=$(dirname $0)/stlink/lib
23
$(dirname $0)/stlink/st-flash write "$4" 0x8000000

0 commit comments

Comments
 (0)