Files
cls_master/Application/BSP/BSP_SDLogger.h
2024-05-21 22:51:32 +02:00

14 lines
332 B
C

// SD logger steam is logged to sd card
// buffernd logger collect logs until some amount of data is collected.
// needs to be flushed before shutdown
// used with ULOG
#include <stdint.h>
#include <stddef.h>
void BSP_SDLogger_Init(int log_number);
void BSP_SDLogger_Write(char *data, size_t length);
void BSP_SDLogger_Flush();