dfs_cromfs.h 389 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020/08/21 ShaoJinchun firset version
  9. */
  10. #ifndef __DFS_CROMFS_H__
  11. #define __DFS_CROMFS_H__
  12. #include <stdint.h>
  13. int dfs_cromfs_init(void);
  14. uint8_t *cromfs_get_partition_data(uint32_t *len);
  15. #endif /*__DFS_CROMFS_H__*/