quec_boot_file_cfg.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /** @file
  2. quec_boot_file_config.h
  3. @brief
  4. This file is used to define boot file system api for different Quectel Project.
  5. */
  6. /*================================================================
  7. Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved.
  8. Quectel Wireless Solution Proprietary and Confidential.
  9. =================================================================*/
  10. /*=================================================================
  11. EDIT HISTORY FOR MODULE
  12. This section contains comments describing changes made to the module.
  13. Notice that changes are listed in reverse chronological order.
  14. WHEN WHO WHAT, WHERE, WHY
  15. ------------ ------- -------------------------------------------------------------------------------
  16. =================================================================*/
  17. #ifndef QUEC_BOOT_FILE_CONFIG_H
  18. #define QUEC_BOOT_FILE_CONFIG_H
  19. #include "fs_config.h"
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #define CONFIG_FS_SPI6_EXT_NOR_SFFS_MOUNT_POINT "/ext" //SPI6 EXT NOR FLASH, mount sffs file system
  24. #define CONFIG_FS_SPI4_EXT_NAND_FAT_MOUNT_POINT "/exnand" //SPI4 EXT NAND FLASH, mount fatfs file system
  25. #define CONFIG_FS_SPI4_EXT_NOR_FAT_MOUNT_POINT "/exnor" //SPI4 EXT NOR FLASH, mount fatfs file system
  26. #define CONFIG_FS_SPI4_EXT_NOR_SFFS_MOUNT_POINT "/ext4n" //SPI4 EXT NOR FLASH, mount sffs file system
  27. #ifndef CONFIG_FS_SDCARD_MOUNT_POINT
  28. #define CONFIG_FS_SDCARD_MOUNT_POINT "/sdcard0"
  29. #endif
  30. #ifdef __cplusplus
  31. } /*"C" */
  32. #endif
  33. #endif /* QUEC_BOOT_FILE_CONFIG_H */