forked from N4IRS/MMDVM-Install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
29 lines (18 loc) · 843 Bytes
/
notes.txt
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
What we want:
1200,8,1,n
stty baud rate 1200 8 bits 1 stop and no parity
stty paramater explanation
stty -F /dev/device, speed 1200, character size 8, use one stop bit per character, disable parity generation and detection
stty -F /dev/ttyACM0 speed 1200 cs8 -cstopb -parenb
Send the firmware to the Due
bossac port relitive to /dev
force_usb_port=true/false override USB port autodetection
erase the entire flash (keep the 8KB of bootloader for SAM Dxx)
write FILE to the flash accelerated
verify FILE matches flash contents
boot from FLASH
reset CPU
image file name
bossac --port=ttyACM0 --force_usb_port=false --erase --write --verify --boot=1 --reset MMDVM.ino.arduino_due_x.bin
stty baud rate 115200 8 bits 1 stop and no parity
stty -F /dev/ttyACM0 speed 115200 cs8 -cstopb -parenb