IonizationChamber/software/Firmware/Inc/Logger.h

20 wiersze
285 B
C
Czysty Zwykły widok Historia

2019-07-03 16:51:36 +00:00
/*
* DataLogger.h
*
* Created on: 16.06.2019
* Author: robert
*/
#ifndef INC_LOGGER_H_
#define INC_LOGGER_H_
#include "CommonDataTypes.h"
typedef uint16_t Logger_DataFormat_t;
2019-08-04 10:07:02 +00:00
2019-07-03 16:51:36 +00:00
void Logger_Init();
2019-08-04 10:07:02 +00:00
void Logger_Print(Logger_DataFormat_t data);
2019-07-03 17:24:45 +00:00
2019-07-03 16:51:36 +00:00
#endif /* INC_LOGGER_H_ */