Timing.h 206 B

123456789101112
  1. #ifndef _TIMING_H_
  2. #define _TIMING_H_
  3. #include "Test.h"
  4. #include "arm_math.h"
  5. void initCycleMeasurement();
  6. void cycleMeasurementStart();
  7. void cycleMeasurementStop();
  8. Testing::cycles_t getCycles();
  9. #endif