esp32-ogn-tracker/main/sdlog.h

18 wiersze
265 B
C
Czysty Zwykły widok Historia

2020-05-06 16:31:43 +00:00
#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__