returns time span in microseconds */
| 154 | |
| 155 | /* returns time span in microseconds */ |
| 156 | PTime UTIL_clockSpanNano(UTIL_time_t clockStart ) |
| 157 | { |
| 158 | UTIL_time_t const clockEnd = UTIL_getTime(); |
| 159 | return UTIL_getSpanTimeNano(clockStart, clockEnd); |
| 160 | } |
| 161 | |
| 162 | void UTIL_waitForNextTick(void) |
| 163 | { |
no test coverage detected