EVE 1.0
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
nrf_delay.h
1
#ifndef NRF_DELAY_H_INCLUDED
2
#define NRF_DELAY_H_INCLUDED
3
4
#include <sys/clock.h>
5
6
void
nrf_delay_ms(uint32_t number_of_ms)
7
{
8
clock_wait
(number_of_ms);
9
}
10
11
static
inline
void
nrf_delay_us(uint32_t number_of_us)
12
{
13
clock_delay_usec
(number_of_us);
14
}
15
16
#endif
clock_delay_usec
void clock_delay_usec(uint16_t dt)
Definition:
clock.c:244
clock_wait
void clock_wait(clock_time_t t)
Definition:
clock.c:214
Contiki
platform
eve
nrf_delay.h
Generated on Thu Mar 30 2017 10:16:55 for EVE 1.0 by
1.8.11