Merge pull request #1950 from yatch/pr/update-for-tsch-cooja-mote

Miscellaneous updates for tsch-cooja-mote
This commit is contained in:
Nicolas Tsiftes 2016-12-05 18:40:28 +01:00 committed by GitHub
commit f09e84976a
3 changed files with 15 additions and 8 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);