bl_update:STM32H7 use 128K

This commit is contained in:
David Sidrane 2019-11-14 10:01:42 -08:00 committed by Lorenz Meier
parent e847698c9f
commit 645b6c3fbc

View File

@ -53,8 +53,11 @@
#include <nuttx/progmem.h>
#define BL_FILE_SIZE_LIMIT 16384
#if defined(CONFIG_ARCH_CHIP_STM32H7)
# define BL_FILE_SIZE_LIMIT 128*1024
#else
# define BL_FILE_SIZE_LIMIT 16384
#endif
__EXPORT int bl_update_main(int argc, char *argv[]);