OpenModem/util/time.h

43 lines
796 B
C
Raw Normal View History

2014-12-02 19:10:06 -05:00
#ifndef UTIL_TIME_H
#define UTIL_TIME_H
2014-12-18 17:45:36 -05:00
#include <util/atomic.h>
2014-12-02 19:10:06 -05:00
#define DIV_ROUND(dividend, divisor) (((dividend) + (divisor) / 2) / (divisor))
2019-01-05 07:47:46 -05:00
#define CLOCK_TICKS_PER_SEC CONFIG_ADC_SAMPLERATE
2014-12-02 19:10:06 -05:00
typedef int32_t ticks_t;
typedef int32_t mtime_t;
volatile ticks_t _clock;
2015-10-02 17:44:24 -04:00
static inline ticks_t timer_clock(void) {
2014-12-02 19:10:06 -05:00
ticks_t result;
ATOMIC_BLOCK(ATOMIC_RESTORESTATE) {
result = _clock;
}
return result;
}
inline ticks_t ms_to_ticks(mtime_t ms) {
return ms * DIV_ROUND(CLOCK_TICKS_PER_SEC, 1000);
}
inline void cpu_relax(void) {
// Do nothing!
}
2015-10-02 17:44:24 -04:00
static inline void delay_ms(unsigned long ms) {
2014-12-18 17:45:36 -05:00
ticks_t start = timer_clock();
unsigned long n_ticks = ms_to_ticks(ms);
while (timer_clock() - start < n_ticks) {
cpu_relax();
}
}
2014-12-02 19:10:06 -05:00
2015-10-02 17:44:24 -04:00
#endif