correct bootloader comment

This commit is contained in:
King Kévin 2016-01-27 23:23:55 +01:00
parent c56bee6ad1
commit 35ffab225e
1 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,9 @@ F_CPU = 16000000UL
# the flasher
PROGRAMMER = arduino
PORT = /dev/ttyUSB0
# to flash
# use the aduino bootloader, with a baudrate of 57600
# reset the device to start (optiboot) bootloader
# flash using the bootloader pre-programmed on the arduino
# in this case we first require the optiboot bootloader to be flashed (which supports a higher baurate of 115200bps instead of the 57600bps of the default arduino bootloader)
# reset the arduino device to start the bootloader
FLASHER = avrdude -p $(DEVICE) -c $(PROGRAMMER) -P $(PORT) -b 115200 -D
# compiler executables
@ -57,7 +57,7 @@ debug: CFLAGS += -DDEBUG
debug: map lst all
# reset board by setting DTR
# the capacitor on DTR with create a pulse on RESET
# the capacitor on DTR will create a pulse on RESET
# after reset the bootloader is start
# the bootloader can be used to reflash the device
reset: