This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Detect which type of boot loader is present, using a fixed built-in table | |
// 2012-03-06 <[email protected]> http://opensource.org/licenses/mit-license.php | |
#include <avr/pgmspace.h> | |
#include <util/crc16.h> | |
#define VERSION "2" | |
// list of all known boot loaders with their unique signatures | |
struct { word crc; const char* desc; } signatures[] = { |