11 lines
252 B
C
11 lines
252 B
C
|
|
//#include "fsl_tstmr_driver.h"
|
||
|
|
|
||
|
|
// This function is used for measuring time in google test framework, returns
|
||
|
|
// elapsed time from reset in milliseconds
|
||
|
|
unsigned int clock()
|
||
|
|
{
|
||
|
|
// return TSTMR_DRV_ReadTimeStamp(0)/1000;
|
||
|
|
// TODO
|
||
|
|
return 0;
|
||
|
|
}
|