blob: a2d78e93d997e2fb6edac0cd269fbf18f5f6eb07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#include "arch.h"
#include <time.h>
#include <unistd.h>
#if defined(WITH_LOOP) || defined(TIMER_S)
#include "driver/uptime.h"
void loop();
#endif
#ifdef WITH_WAKEUP
void wakeup();
#endif
void Arch::setup(void) { }
void Arch::idle_loop(void)
{
while (1) {
sleep(1);
#ifdef WITH_LOOP
loop();
#endif
#ifdef WITH_WAKEUP
wakeup();
#endif
#ifdef TIMER_S
uptime.tick_s();
#endif
}
}
void Arch::idle(void)
{
}
void Arch::delay_us(unsigned int const us)
{
struct timespec ts;
ts.tv_sec = 0;
ts.tv_nsec = us * 1000;
nanosleep(&ts, NULL);
}
void Arch::delay_ms(unsigned int const ms)
{
struct timespec ts;
ts.tv_sec = ms / 1000;
ts.tv_nsec = (ms % 1000) * 1000000;
nanosleep(&ts, NULL);
}
Arch arch;
|