mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
initial upload
This commit is contained in:
parent
be5483546b
commit
a63e6243d2
17
Tools/APM2_2560_bootloader/FLASH.txt
Normal file
17
Tools/APM2_2560_bootloader/FLASH.txt
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
to build the hex:
|
||||||
|
|
||||||
|
make mega2560
|
||||||
|
|
||||||
|
To flash the firmware, use avrdude version 5.11 or above
|
||||||
|
|
||||||
|
SERIAL_PORT=/dev/tty.usbserial
|
||||||
|
|
||||||
|
# erase the chip (necessary before unlocking can happen), then unlock the boot loader area
|
||||||
|
avrdude -e -c stk500v2 -p m2560 -P $SERIAL_PORT -U lock:w:0x3f:m
|
||||||
|
|
||||||
|
# flash the hex file (whatever.hex)
|
||||||
|
avrdude -v -c stk500v2 -p m2560 -P $SERIAL_PORT -U flash:w:stk500boot_v2_mega2560.hex
|
||||||
|
|
||||||
|
# re-lock the bootloader area of the chip
|
||||||
|
avrdude -c stk500v2 -p m2560 -P $SERIAL_PORT -U lock:w:0x0f:m
|
Loading…
Reference in New Issue
Block a user