Swimate V2 without RTOS code

Dependencies:   Adafruit_GFX_128x64 DS3231 PinDetect SDFileSystem USBDevice mbed RealtimeMath MODSERIAL

log_data.h

Committer:
paulbartell
Date:
2014-05-28
Revision:
13:227a6cfd2097
Parent:
9:a711b5b34d73
Child:
17:fb8415091770

File content as of revision 13:227a6cfd2097:

#ifndef _LOG_FILE_H
#define _LOG_FILE_H

#include "helper_3dmath.h"
#define ACCEL_LOG "/sd/data.log"
#define SPLIT_LOG "/sd/splits.log"

bool log_init(char* timestamp);
bool log_data(VectorInt16 *data);
bool log_data(uint16_t split);
bool log_close();

#endif // _LOG_FILE_H