Reduce bootloader magic key to 16 bits to save FLASH space.

This commit is contained in:
Dean Camera 2012-07-07 15:30:35 +00:00
parent 10944d9ddf
commit 56d368f2de
6 changed files with 6 additions and 6 deletions

View file

@ -53,7 +53,7 @@
#define COMMAND_STARTAPPLICATION 0xFFFF
/** Magic bootloader key to unlock forced application start mode. */
#define MAGIC_BOOT_KEY 0xDC42CACA
#define MAGIC_BOOT_KEY 0xDC42
/* Function Prototypes: */
static void SetupHardware(void);