fal_cfg.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-08-05 mazhiyuan first version
  9. */
  10. #ifndef _FAL_CFG_H_
  11. #define _FAL_CFG_H_
  12. #include <rtconfig.h>
  13. #include <board.h>
  14. /* ===================== Flash device Configuration ========================= */
  15. extern const struct fal_flash_dev mm32_onchip_flash;
  16. extern struct fal_flash_dev nor_flash0;
  17. /* flash device table */
  18. #define FAL_FLASH_DEV_TABLE \
  19. { \
  20. &mm32_onchip_flash, \
  21. }
  22. /* ====================== Partition Configuration ========================== */
  23. #ifdef FAL_PART_HAS_TABLE_CFG
  24. /* partition table */
  25. #define FAL_PART_TABLE \
  26. { \
  27. {FAL_PART_MAGIC_WORD, "bl", "mm32_onchip", 0, 128*1024, 0}, \
  28. {FAL_PART_MAGIC_WORD, "filesystem", "mm32_onchip", 128*1024, 255*1024, 0}, \
  29. }
  30. #endif /* FAL_PART_HAS_TABLE_CFG */
  31. #endif /* _FAL_CFG_H_ */