30 lines
894 B
C
30 lines
894 B
C
#ifndef _FAL_CFG_H_
|
|
#define _FAL_CFG_H_
|
|
|
|
#include <rtconfig.h>
|
|
#include <board.h>
|
|
|
|
|
|
/* ===================== Flash device Configuration ========================= */
|
|
|
|
extern const struct fal_flash_dev stm32_onchip_flash_256k;
|
|
|
|
/* flash device table */
|
|
#define FAL_FLASH_DEV_TABLE \
|
|
{ \
|
|
&stm32_onchip_flash_256k \
|
|
}
|
|
|
|
/* ====================== Partition Configuration ========================== */
|
|
|
|
#ifdef FAL_PART_HAS_TABLE_CFG
|
|
|
|
#define FAL_PART_TABLE \
|
|
{ \
|
|
{FAL_PART_MAGIC_WORD, "bl", "onchip_flash_256k", 0, 128 * 1024, 0}, \
|
|
{FAL_PART_MAGIC_WORD, "config", "onchip_flash_256k", 128 * 1024, 128 * 1024, 0}, \
|
|
}
|
|
|
|
#endif /* FAL_PART_HAS_TABLE_CFG */
|
|
|
|
#endif /* _FAL_CFG_H_ */ |