Contiki 2.6
|
00001 /** 00002 * \file 00003 * Header file for the STM32F103-specific rtimer code 00004 * \author 00005 * Simon Berg <ksb@users.sourceforge.net> 00006 */ 00007 00008 #ifndef __RTIMER_ARCH_H__ 00009 #define __RTIMER_ARCH_H__ 00010 00011 #include "sys/rtimer.h" 00012 00013 #define RTIMER_ARCH_SECOND (MCK/1024) 00014 00015 void rtimer_arch_set(rtimer_clock_t t); 00016 00017 rtimer_clock_t rtimer_arch_now(void); 00018 00019 #endif /* __RTIMER_ARCH_H__ */