Add RTIMERTICKS_TO_US_64() macro (platform/cooja)

master-31012017
Yasuyuki Tanaka 2016-11-26 11:47:59 +01:00
parent 106731cec1
commit a4adc257e8
1 changed files with 3 additions and 2 deletions

View File

@ -38,8 +38,9 @@
#define RTIMER_ARCH_SECOND UINT64_C(1000000)
#define US_TO_RTIMERTICKS(US) (US)
#define RTIMERTICKS_TO_US(T) (T)
#define US_TO_RTIMERTICKS(US) (US)
#define RTIMERTICKS_TO_US(T) (T)
#define RTIMERTICKS_TO_US_64(T) (T)
rtimer_clock_t rtimer_arch_now(void);
int rtimer_arch_check(void);