Swimate V2 without RTOS code

Dependencies:   Adafruit_GFX_128x64 DS3231 PinDetect SDFileSystem USBDevice mbed RealtimeMath MODSERIAL

Committer:
paulbartell
Date:
Wed May 28 22:56:25 2014 +0000
Revision:
13:227a6cfd2097
Parent:
9:a711b5b34d73
Child:
17:fb8415091770
Started bluetooth functionality.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ellingjp 8:8430a5c0914c 1 #ifndef _LOG_FILE_H
ellingjp 8:8430a5c0914c 2 #define _LOG_FILE_H
ellingjp 8:8430a5c0914c 3
ellingjp 8:8430a5c0914c 4 #include "helper_3dmath.h"
ellingjp 9:a711b5b34d73 5 #define ACCEL_LOG "/sd/data.log"
ellingjp 9:a711b5b34d73 6 #define SPLIT_LOG "/sd/splits.log"
ellingjp 8:8430a5c0914c 7
paulbartell 13:227a6cfd2097 8 bool log_init(char* timestamp);
ellingjp 8:8430a5c0914c 9 bool log_data(VectorInt16 *data);
ellingjp 9:a711b5b34d73 10 bool log_data(uint16_t split);
ellingjp 8:8430a5c0914c 11 bool log_close();
ellingjp 8:8430a5c0914c 12
ellingjp 8:8430a5c0914c 13 #endif // _LOG_FILE_H