/* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2025-11-22 Administrator the first version */ #ifndef _FAL_CFG_H_ #define _FAL_CFG_H_ #include #include extern struct fal_flash_dev nor_flash0; /* flash device table */ #define FAL_FLASH_DEV_TABLE \ { \ &nor_flash0, \ } /* 分区表:根据你的需求划分 */ #define FAL_PART_TABLE \ { \ {FAL_PART_MAGIC_WORD, "sysdata","W25Q128", 0, 16 * 1024 * 1024, 0 }, \ } #endif /* _FAL_CFG_H_ */