sdfs_nand_sd.h 755 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief SDFS nand and sd interface
  9. */
  10. #ifndef __SDFS_NAND_SD_H__
  11. #define __SDFS_NAND_SD_H__
  12. #include <kernel.h>
  13. #ifdef CONFIG_SD_FS_NAND_SD_STORAGE
  14. struct sd_dir * nand_sd_find_dir(u8_t stor_id, u8_t part, const char *filename, void *buf_size_32);
  15. int nand_sd_sd_fread(u8_t stor_id, struct sd_file *sd_file, void *buffer, int len);
  16. #else
  17. static inline struct sd_dir * nand_sd_find_dir(u8_t stor_id, u8_t part, const char *filename, void *buf_size_32)
  18. {
  19. return NULL;
  20. }
  21. static inline int nand_sd_sd_fread(u8_t stor_id, struct sd_file *sd_file, void *buffer, int len)
  22. {
  23. return -1;
  24. }
  25. #endif
  26. #endif/* #define __SDFS_NAND_SD_H__ */