OpenModem/util/time.h

43 lines
781 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>
#include "hardware/AFSK.h"
2014-12-02 19:10:06 -05:00
#define DIV_ROUND(dividend, divisor) (((dividend) + (divisor) / 2) / (divisor))
2019-01-12 09:14:41 -05:00
//typedef int32_t ticks_t;
//typedef int32_t mtime_t;
2014-12-02 19:10:06 -05:00
2019-01-12 09:14:41 -05:00
volatile uint32_t _clock;
2014-12-02 19:10:06 -05:00
2019-01-12 09:14:41 -05:00
static inline uint32_t timer_clock(void) {
uint32_t result;
2014-12-02 19:10:06 -05:00
ATOMIC_BLOCK(ATOMIC_RESTORESTATE) {
result = _clock;
}
return result;
}
2019-01-12 09:14:41 -05:00
inline uint32_t ms_to_ticks(mtime_t ms) {
2014-12-02 19:10:06 -05:00
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