kopia lustrzana https://github.com/pjalocha/esp32-ogn-tracker
18 wiersze
265 B
C
18 wiersze
265 B
C
![]() |
#ifndef __SDLOG_H__
|
||
|
#define __SDLOG_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "hal.h"
|
||
|
|
||
|
void Log_Write(char Byte);
|
||
|
int Log_Free(void);
|
||
|
extern SemaphoreHandle_t Log_Mutex;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
#endif
|
||
|
void vTaskSDLOG(void* pvParameters);
|
||
|
|
||
|
#endif // __SDLOG_H__
|