2026-04-27 13:09:08 +08:00
|
|
|
#ifndef _FAL_CFG_H_
|
|
|
|
|
#define _FAL_CFG_H_
|
|
|
|
|
|
|
|
|
|
#include <rtconfig.h>
|
|
|
|
|
#include <board.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ===================== Flash device Configuration ========================= */
|
|
|
|
|
|
2026-08-05 16:40:21 +08:00
|
|
|
extern const struct fal_flash_dev stm32_onchip_flash_2048k;
|
2026-04-27 13:09:08 +08:00
|
|
|
|
|
|
|
|
/* flash device table */
|
|
|
|
|
#define FAL_FLASH_DEV_TABLE \
|
|
|
|
|
{ \
|
2026-08-05 16:40:21 +08:00
|
|
|
&stm32_onchip_flash_2048k \
|
2026-04-27 13:09:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ====================== Partition Configuration ========================== */
|
|
|
|
|
|
|
|
|
|
#ifdef FAL_PART_HAS_TABLE_CFG
|
|
|
|
|
|
|
|
|
|
#define FAL_PART_TABLE \
|
|
|
|
|
{ \
|
2026-08-05 16:40:21 +08:00
|
|
|
{FAL_PART_MAGIC_WORD, "app", "onchip_flash_2048k", 0, 1024 * 1024, 0}, \
|
|
|
|
|
{FAL_PART_MAGIC_WORD, "config", "onchip_flash_2048k", 1024 * 1024, 1024 * 1024, 0}, \
|
2026-04-27 13:09:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* FAL_PART_HAS_TABLE_CFG */
|
|
|
|
|
|
|
|
|
|
#endif /* _FAL_CFG_H_ */
|