root / trunk / bootloader / bootloader.h @ 194
History | View | Annotate | Download (306 Bytes)
| 1 | #ifndef _BOOTLOADER_H_
|
|---|---|
| 2 | #define _BOOTLOADER_H_
|
| 3 | |
| 4 | #include <avr/io.h> |
| 5 | #include <avr/boot.h> |
| 6 | #include <avr/wdt.h> |
| 7 | #include <avr/fuse.h> |
| 8 | #include <tooltron.h> |
| 9 | #include "rs485_poll.h" |
| 10 | #include "packet.h" |
| 11 | |
| 12 | /** @brief This is the address of the tool. Change this pre program instance */
|
| 13 | #define ADDR 18 |
| 14 | |
| 15 | #endif
|