summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-03-08 11:53:33 +0100
committerDaniel Friesel <derf@finalrewind.org>2019-03-08 11:53:33 +0100
commitcd7ee540291f7412153ee9fa1e785cc859c589fe (patch)
treec4c58dc1957dc464fb61cdb3742f7b32d5eb3c18
parentd1668a6fc12062c2c180534e7825910e6fcb05b0 (diff)
msp430fr5969 counter: Track overflows
-rw-r--r--include/arch/msp430fr5969lp/driver/counter.h10
-rw-r--r--src/arch/msp430fr5969lp/driver/counter.cc11
2 files changed, 18 insertions, 3 deletions
diff --git a/include/arch/msp430fr5969lp/driver/counter.h b/include/arch/msp430fr5969lp/driver/counter.h
index b95aba1..0d7e140 100644
--- a/include/arch/msp430fr5969lp/driver/counter.h
+++ b/include/arch/msp430fr5969lp/driver/counter.h
@@ -13,7 +13,7 @@ class Counter {
public:
uint16_t value;
- uint8_t overflow;
+ volatile uint8_t overflow;
Counter() : overflow(0) {}
@@ -21,12 +21,16 @@ class Counter {
overflow = 0;
TA2CTL = TASSEL__SMCLK | ID__1 | MC__CONTINUOUS;
TA2EX0 = 0;
- TA2CTL |= TACLR;
+ TA2CTL |= TACLR | TAIE;
+ asm volatile("nop");
+ __eint();
+ asm volatile("nop");
}
inline void stop() {
- TA2CTL = 0;
+ __dint();
value = TA2R;
+ TA2CTL = 0;
}
};
diff --git a/src/arch/msp430fr5969lp/driver/counter.cc b/src/arch/msp430fr5969lp/driver/counter.cc
index 62ac778..cd10b5c 100644
--- a/src/arch/msp430fr5969lp/driver/counter.cc
+++ b/src/arch/msp430fr5969lp/driver/counter.cc
@@ -1,7 +1,18 @@
+#include "arch.h"
#include "driver/counter.h"
+#include "driver/gpio.h"
#if defined(TIMER_CYCLES)
#warn "timer_cycles and counter are mutually exclusive. Expect odd behaviour."
#endif
Counter counter;
+
+__attribute__((interrupt(TIMER2_A1_VECTOR))) void handle_timer2_overflow()
+{
+ if (TA2IV == 0x0e) {
+ if (counter.overflow < 255) {
+ counter.overflow++;
+ }
+ }
+}