16 lines
433 B
C
16 lines
433 B
C
/** \file logger.h
|
|
* @brief File for generating log files and meta data
|
|
* @author Josh Stewart
|
|
*
|
|
* This file contains functions for creating a log file for use eith by TunerStudio directly or to be written to an SD card
|
|
*
|
|
*/
|
|
|
|
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#define LOG_ENTRY_SIZE 100 /**< The size of the live data packet. This MUST match ochBlockSize setting in the ini file */
|
|
|
|
void createLog(uint8_t *array);
|
|
|
|
#endif |