| 12345678910111213141516171819202122232425262728293031323334353637 | #ifndef __LOG_AI_H#define __LOG_AI_H#ifdef __cplusplusextern "C" {#endif#include "FreeRTOS.h"#include "task.h"#include "semphr.h"#include "event_groups.h"  void log_ai_archive_init(void);//uint8_t log_get_arch_channel_number(void);//uint8_t log_is_channel_on(uint8_t channel);//void log_archive_task_device(void);extern uint32_t archive_cnt[];extern struct ringfs fs_ch_arch[];extern EventGroupHandle_t archive_event;#ifdef __cplusplus}#endif#endif // __LOG_AI_H
 |