-
Notifications
You must be signed in to change notification settings - Fork 9
/
Timer.cpp
110 lines (84 loc) · 3.16 KB
/
Timer.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include <Arduino.h>
#include "nRF_SDK/nrf_timer.h"
#include "Timer.h"
static void defaultFunc() {};
static funcPtr_t Timer_callbackPtr;
TimerClass::TimerClass(int timer, int channel) {
nrf_timer = nrf_timers[timer];
cc_channel = nrf_timer_cc_channel_t(channel);
Timer_callbackPtr = defaultFunc;
Timers[timer] = this;
// Timer mode with 32bit width
nrf_timer_bit_width_set(nrf_timer, NRF_TIMER_BIT_WIDTH_32);
nrf_timer_mode_set(nrf_timer, NRF_TIMER_MODE_TIMER);
nrf_timer_frequency_set(nrf_timer, NRF_TIMER_FREQ_16MHz);
}
void TimerClass::NVIC_set(IRQn_Type IRQn) {
// enable IRQ and avoid clashes with soft device
NVIC_SetPriority(IRQn, 3);
NVIC_ClearPendingIRQ(IRQn);
NVIC_EnableIRQ(IRQn);
}
void TimerClass::attachInterrupt(funcPtr_t callback, int microsec) {
// This function will be called when time out interrupt will occur
if (callback) {
Timer_callbackPtr = callback;
} else {
Serial.println("ERROR: callback function pointer is null.");
return;
}
// Start if not already running (and reset?)
nrf_timer_task_trigger(nrf_timer, NRF_TIMER_TASK_START);
nrf_timer_task_trigger(nrf_timer, NRF_TIMER_TASK_CLEAR);
// Clear and enable compare interrupt
nrf_timer_int_mask_t chanel_mask = nrf_timer_compare_int_get(cc_channel);
nrf_timer_int_enable(nrf_timer, chanel_mask);
if (nrf_timer == nrf_timers[1]) NVIC_set(TIMER1_IRQn);
if (nrf_timer == nrf_timers[2]) NVIC_set(TIMER2_IRQn);
if (nrf_timer == nrf_timers[3]) NVIC_set(TIMER3_IRQn);
if (nrf_timer == nrf_timers[4]) NVIC_set(TIMER4_IRQn);
// Program compare register between 0 & 2**28 (max on 32 bits @16 ticks/us)
if (microsec < 0) microsec = 0;
if (microsec >= 1 << 28) microsec = (1 << 28) - 1;
uint32_t ticks = nrf_timer_us_to_ticks(microsec, NRF_TIMER_FREQ_16MHz);
nrf_timer_cc_write(nrf_timer, cc_channel, ticks);
}
// Should be called in the Timer_callbackPtr() function
inline void TimerClass::detachInterrupt() {
// Stop timer
nrf_timer_task_trigger(nrf_timer, NRF_TIMER_TASK_STOP);
// Disable timer compare interrupt
nrf_timer_int_mask_t chanel_mask = nrf_timer_compare_int_get(cc_channel);
nrf_timer_int_disable(nrf_timer, chanel_mask);
// Clear event - TODO?
nrf_timer_event_t event = nrf_timer_compare_event_get(chanel_mask);
nrf_timer_event_clear(nrf_timer, event);
}
// Timer 0 is used by the soft device but Timer 1, 2, 3 and 4 are available
extern "C" void TIMER1_IRQHandler(void) {
if (Timers[1]) {
Timers[1]->detachInterrupt();
Timer_callbackPtr();
}
}
extern "C" void TIMER2_IRQHandler(void) {
if (Timers[2]) {
Timers[2]->detachInterrupt();
Timer_callbackPtr();
}
}
extern "C" void TIMER3_IRQHandler(void) {
if (Timers[3]) {
Timers[3]->detachInterrupt();
Timer_callbackPtr();
}
}
extern "C" void TIMER4_IRQHandler(void) {
if (Timers[4]) {
Timers[4]->detachInterrupt();
Timer_callbackPtr();
}
}
NRF_TIMER_Type* nrf_timers[] = {NRF_TIMER0, NRF_TIMER1, NRF_TIMER2,
NRF_TIMER3, NRF_TIMER4};
TimerClass* Timers[5] = {0};