Swimate V2 without RTOS code

Dependencies:   Adafruit_GFX_128x64 DS3231 PinDetect SDFileSystem USBDevice mbed RealtimeMath MODSERIAL

SystemTime.h

Committer:
ellingjp
Date:
2014-06-09
Revision:
24:f2503d1256ad
Parent:
15:002bac432234

File content as of revision 24:f2503d1256ad:

#ifndef _SYSTEMTIME_H
#define _SYSTEMTIME_H

#include "mbed.h"

class SystemTime {
    public:
        static void start();
        static unsigned int read_ms();
    
    private:
        static bool initialized;
        static Timer sysTime;
};

#endif // _SYSTEMTIME_H