fal_cfg.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. * 2018-12-8 zylx first version
  9. */
  10. #ifndef _FAL_CFG_H_
  11. #define _FAL_CFG_H_
  12. #include <rtthread.h>
  13. #include <board.h>
  14. extern const struct fal_flash_dev stm32_onchip_flash;
  15. /* flash device table */
  16. #define FAL_FLASH_DEV_TABLE \
  17. { \
  18. &stm32_onchip_flash, \
  19. }
  20. /* ====================== Partition Configuration ========================== */
  21. #ifdef FAL_PART_HAS_TABLE_CFG
  22. /* partition table */
  23. #define FAL_PART_TABLE \
  24. { \
  25. {FAL_PART_MAGIC_WROD, "app", "onchip_flash", 0, 496 * 1024, 0}, \
  26. {FAL_PART_MAGIC_WROD, "param", "onchip_flash", 496* 1024 , 16 * 1024, 0}, \
  27. }
  28. #endif /* FAL_PART_HAS_TABLE_CFG */
  29. #endif /* _FAL_CFG_H_ */