Wixel SDK
time.h
Go to the documentation of this file.
1 
18 #ifndef _WIXEL_TIME_H
19 #define _WIXEL_TIME_H
20 
21 #include <cc2511_map.h>
22 
30 void timeInit();
31 
34 uint32 getMs();
35 
38 ISR(T4, 0);
39 
45 void delayMicroseconds(uint8 microseconds);
46 
52 void delayMs(uint16 milliseconds);
53 
54 #endif
void delayMs(uint16 milliseconds)
Definition: time.c:43
ISR(T4, 0)
Definition: time.c:13
unsigned long uint32
Definition: cc2511_types.h:21
unsigned short uint16
Definition: cc2511_types.h:15
void delayMicroseconds(uint8 microseconds)
unsigned char uint8
Definition: cc2511_types.h:9
uint32 getMs()
Definition: time.c:19
void timeInit()
Definition: time.c:29