/** * \file * * * \brief Bootloader hardware specific definition. * * \author Daniele Basile */ #ifndef HW_BOOT_H #define HW_BOOT_H /** * Define bootloader flash size. * * Note: Remember that this size should be comply * to size defined in linker script, otherwise you * could not find the main program application. */ #define FLASH_BOOT_SIZE 0x8000 // 32kbyte #endif /* HW_BOOT_H */