forked from jsnyder/stm32loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
28 lines (21 loc) · 856 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
WiznetLoader
===========
Python script which will talk to the custom SweetPeas bootloader.
Original Version (stm32loader) by: Ivan A-R <ivan@tuxotronic.org>
Modified version by: P Oldberg (pontus@sweetpeas.se)
Usage: ./wnloader.py [-hqVewvr] [-l length] [-p port] [-b baud] [-a addr] [file.bin]
-h This help
-q Quiet
-V Verbose
-e Erase
-w Write
-v Verify
-r Read
-l length Length of read
-p port Serial port (default: /dev/tty.usbserial-ftCYPMYJ)
-b baud Baud speed (default: 115200)
-a addr Target address
./wnloader.py -e -w -v example/main.bin
Example:
wnloader.py -e -w -v somefile.bin
This will pre-erase flash, write somefile.bin to the flash on the device, and then perform a verification after writing is finished.