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
use crate;
/// Type for tick counting. It is signed for synchronization. It should be u128.
pub type TickType = u64;
/// The definition of the timers themselves.
/// TODO: Should contain synchronization period and synchronization scale.
/// Operating system timer.
// TODO: Maybe it can be non static. It is static to make functions to pass to task manager.
// TODO: Default parameters should be read from config file.
static mut TIMER: Timer = Timer ;