sdfs_manager.h 536 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file sdfs manager interface
  8. */
  9. #ifndef __SDFS_MANGER_H__
  10. #define __SDFS_MANGER_H__
  11. #ifdef CONFIG_FILE_SYSTEM
  12. #include <fs/fs.h>
  13. #include <disk/disk_access.h>
  14. #endif
  15. /**
  16. * @defgroup sdfs_manager_apis App FS Manager APIs
  17. * @ingroup system_apis
  18. * @{
  19. */
  20. /**
  21. * @brief sdfs manager init function
  22. *
  23. * @return 0 int success others failed
  24. */
  25. int sdfs_manager_init(void);
  26. /**
  27. * @} end defgroup fs_manager_apis
  28. */
  29. #endif