#ifndef _FAL_CFG_H_ #define _FAL_CFG_H_ #include #include /* ===================== Flash device Configuration ========================= */ extern const struct fal_flash_dev stm32_onchip_flash_1024k; /* flash device table */ #define FAL_FLASH_DEV_TABLE \ { \ &stm32_onchip_flash_1024k \ } /* ====================== Partition Configuration ========================== */ #ifdef FAL_PART_HAS_TABLE_CFG #define FAL_PART_TABLE \ { \ {FAL_PART_MAGIC_WORD, "bl", "onchip_flash_1024k", 0, 128 * 1024, 0}, \ {FAL_PART_MAGIC_WORD, "config", "onchip_flash_1024k", 128 * 1024, 896 * 1024, 0}, \ } #endif /* FAL_PART_HAS_TABLE_CFG */ #endif /* _FAL_CFG_H_ */