From 35ffab225e0e2a95d2b363599a84b697eb24f7a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 27 Jan 2016 23:23:55 +0100 Subject: [PATCH] correct bootloader comment --- arduino_nano/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arduino_nano/Makefile b/arduino_nano/Makefile index 86979e5..88cbafc 100644 --- a/arduino_nano/Makefile +++ b/arduino_nano/Makefile @@ -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: