esp32-ogn-tracker/main/sdlog.h

30 wiersze
453 B
C

2020-05-06 16:31:43 +00:00
#ifndef __SDLOG_H__
#define __SDLOG_H__
#include <stdint.h>
#include "hal.h"
#include "igc-key.h"
2020-05-06 16:31:43 +00:00
void Log_Write(char Byte);
int Log_Free(void);
extern SemaphoreHandle_t Log_Mutex;
extern FIFO<OGN_RxPacket<OGN_Packet>, 32> IGClog_FIFO;
extern IGC_Key IGC_SignKey;
2020-05-06 16:31:43 +00:00
#ifdef __cplusplus
extern "C"
#endif
void vTaskSDLOG(void* pvParameters);
/*
#ifdef __cplusplus
extern "C"
#endif
void vTaskIGC(void* pvParameters);
*/
2020-05-06 16:31:43 +00:00
#endif // __SDLOG_H__