-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.cpp
130 lines (96 loc) · 2.09 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
* timer.c
*
* Created on: 27/05/2014
* Author: Wellington
*/
#include "msp430g2553.h"
#include "timer.h"
#include "pins.h"
#include "defines.h"
volatile int msCounter;
volatile int msCronometer;
volatile long secCounter;
volatile int startCronometer; //BOOL
volatile bool starttxcronometer;
volatile int txcronometer;
volatile int txtimeout;
void initClockTime() {
msCounter = 0;
secCounter = 0;
msCronometer = 0;
startCronometer = FALSE;
starttxcronometer = false;
WDTCTL = WDT_MDLY_0_5; // WDT as interval timer (period 8 ms)
IE1 |= WDTIE;
}
void startTxTimeout(int timeout) {
txcronometer = 0;
starttxcronometer = true;
txtimeout = timeout *16;
}
int partialTxTimeout() {
return txcronometer/16;
}
void secondsElapsed(int interval) {
/*
int startTime = secCounter;
int presentTime = 0;
while (presentTime - startTime < interval) {
presentTime = secCounter;
}*/
msCronometer = 0;
int presentTime = 0;
//activate cronometer
startCronometer = TRUE; //BOOL
int intervalEnd = 32000 * interval;
while (presentTime < intervalEnd) {
presentTime = msCronometer;
}
//de-activate cronometer
startCronometer = FALSE; //BOOL
msCronometer = 0;
}
void quaterMsElapsed(int interval) {
msCronometer = 0;
int presentTime = 0;
//activate cronometer
startCronometer = TRUE; //BOOL
int intervalEnd = 8 * interval;
while (presentTime < intervalEnd) {
presentTime = msCronometer;
}
//de-activate cronometer
startCronometer = FALSE; //BOOL
msCronometer = 0;
}
int getMs() {
int ms;
ms = msCounter / 16;
return ms;
}
int getSec() {
return secCounter;
}
void initTest(){
secCounter = 0;
msCounter = 0;
}
#pragma vector=WDT_VECTOR
__interrupt void wdt_timer(void) {
msCounter = msCounter + 1;
if (msCounter == 32000) {
GREEN_LED_TOGGLE();
secCounter = secCounter + 1;
msCounter = 0;
}
if (startCronometer == TRUE) {
msCronometer = msCronometer + 1;
}
if (starttxcronometer) {
txcronometer = txcronometer + 1;
if (txcronometer > txtimeout) {
starttxcronometer = false;
}
}
}