// Program Information //////////////////////////////////////////////////////// /** * @file SimpleTimer.h * * @brief Header file for micro-second precision timer * * @author Michael Leverington * * @details Specifies all member methods of the SimpleTimer * * @version 2.00 (13 January 2017) * 1.00 (11 September 2015) * * @Note None */ // Precompiler directives ///////////////////////////////////////////////////// #ifndef SIMTIMER_H #define SIMTIMER_H // Header files /////////////////////////////////////////////////////////////// #include #include #include #include "Sim03_Driver.h" // Global Constants ////////////////////////////////////////////////////////// enum TIMER_CTRL_CODES { ZERO_TIMER, LAP_TIMER, STOP_TIMER, GET_TIME }; extern const char RADIX_POINT; //extern pthread_mutex_t timerThread_mutex; //extern const char SPACE; // Function Prototype ///////////////////////////////////////////////////////// void * runTimerThread( void *timerThreadData ); double accessTimer( int controlCode, char *timeStr ); double processTime( double startSec, double endSec, double startUSec, double endUSec, char *timeStr ); void timeToString( int secTime, int uSecTime, char *timeStr ); #endif // ifndef SIMTIMER_H