log_api.h 231 B

12345678910111213141516
  1. #ifndef __LOG_API_H
  2. #define __LOG_API_H
  3. #include "at32f403a_407.h"
  4. #include "ringfs.h"
  5. #include <stdbool.h>
  6. //
  7. void log_get_entry_count(void);
  8. //
  9. int log_get_entry(uint32_t index, struct ringfs *fs);
  10. #endif /* __LOG_API_H */