diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2008-11-26 14:34:24 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2008-11-26 14:34:24 +0000 |
commit | 1e421dd3933f40e87d859739634d97ff12986340 (patch) | |
tree | 26196c76620ff431f26a8fdaaab15385577dbda9 /bootloaders/atmega168/ATmegaBOOT_168.c | |
parent | 1d861783877eda29996a08184e62a181f96d6f75 (diff) |
Setting atmega328 bootloader baud rate to 57600 (for now) and adding isp targets to makefile (e.g. diecimila_isp, atmega328_isp).
Diffstat (limited to 'bootloaders/atmega168/ATmegaBOOT_168.c')
-rwxr-xr-x | bootloaders/atmega168/ATmegaBOOT_168.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootloaders/atmega168/ATmegaBOOT_168.c b/bootloaders/atmega168/ATmegaBOOT_168.c index 90bef67..9413f86 100755 --- a/bootloaders/atmega168/ATmegaBOOT_168.c +++ b/bootloaders/atmega168/ATmegaBOOT_168.c @@ -87,7 +87,9 @@ /* set the UART baud rate */
/* 20060803: hacked by DojoCorp */
//#define BAUD_RATE 115200
+#ifndef BAUD_RATE
#define BAUD_RATE 19200
+#endif
/* SW_MAJOR and MINOR needs to be updated from time to time to avoid warning message from AVR Studio */
|