-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
231 lines (184 loc) · 4.89 KB
/
main.c
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
* main.c
*
* Construido com a IDE CCSv6 e compilador GNU v4.9.1 (Red Hat)
*/
#include "setup.h"
#include "uart/uart_tx.h"
#include "i2c/mpu6050/mpu6050.h"
#include "i2c/twi_master.h"
volatile int counter = 0;
volatile int counterRX = 0;
volatile int counterTX = 0;
void initPorts();
// Para sair do modo de baixo consumo no modo I2C
static volatile uint8_t FLAG_wakeUpI2C = 0;
/* Metodos externos para o I2C */
//extern void i2c_nack(void);
extern void i2c_rx(void);
extern void i2c_tx(void);
//extern void i2c_state_isr(void);
//extern void i2c_txrx_isr(void);
/* Metodo externo para o UART RX */
extern void uart_rx(void);
/* Variaveis WDT */
volatile unsigned long wdt_overflow_count = 0;
volatile unsigned long wdt_millis = 0;
volatile unsigned int wdt_fract = 0;
/* Para o controle do sleep */
volatile uint8_t sleeping = 0;
// Incrementa quando sleeping.
uint16_t SMILLIS_INC = 0;
uint16_t SFRACT_INC = 0;
// Informa se deve ser realizado a leitura dos sensores
volatile uint8_t readSensors = 0;
// Parametros do magnometro (HMC5884L)
uint8_t magEnabled = 0; // Informa que o magnometro estah habilitado
int mx = 0, my = 0, mz = 0; // Dados do magnometro
// Parametros do barometro (BMP085)
uint8_t barEnabled = 0;
long temp10 = 0, pressure = 0;
float temp = 0.0, altitude = 0.0;
// Parametros do accel/gyro (MPU6050)
uint8_t mpuEnabled = 0;
int16_t mpuTemp = 0;
float mpuTempDegrees = 0.0;
int16_t gx = 0, gy = 0, gz = 0; // Dados do giroscopio
int16_t ax = 0, ay = 0, az = 0; // Dados do acelerometro
/*
* main.c
*/
int main(void) {
//unsigned int i = 0;
initPorts();
disableWatchDog();
initClocks();
enableWatchDog();
saveUsbPower();
setupUart();
setupI2C();
magEnabled = 0;
barEnabled = 0;
mpuEnabled = 0;
while (1) {
uint8_t enable = mpu6050_detect();
if (enable) {
uart_printf("MPU6050 Habilitado\r\n");
if (mpuEnabled == 0) {
uart_printf("Configurando...\r\n");
mpu6050_config();
mpuEnabled = 1;
}
//mpu6050_getMeasurements(&ax,&ay,&az,&mpuTemp,&gx,&gy,&gz);
mpu6050_getTemperature(&mpuTemp);
mpuTempDegrees = mpuEnabled/340 + 36.53;
uart_printf("temp = %.1f C\r\n", mpuTempDegrees);
mpu6050_getAcceleration(&ax, &ay, &az);
uart_printf("ax = %i; ay = %i, az = %i\r\n", ax, ay, az);
mpu6050_getRotation(&gx,&gy,&gz);
uart_printf("gx = %i; gy = %i, gz = %i\r\n", gx, gy, gz);
}
else {
uart_printf("MPU6050 Desabilitado\r\n");
if (mpuEnabled)
mpuEnabled = 0;
}
delay(500);
counter++;
}
return 0;
}
void initPorts() {
P1DIR |= BIT0; // P1.0 output
P1OUT &= ~BIT0; // Disable P1.0
}
/*
* Configuração para o TIMER_0 (disparado a cada 20ms)
*/
/*void setupTimer0(void) {
TA0CTL = TASSEL_2 + // Fonte do clock: SMCLK (25MHz)
MC_1 + // Modo de contagem: progressiva
ID_3 + // Fator de divisão: 8 ( 3125kHz = 0,32ms )
TACLR; // Limpa contador
TA0CCTL0 = CCIE; // Habilita interrupção do Timer A Bloco CCR0
TA0CCR0 = 62500; // Valor a ser comparado: 62500 --> 20ms
}*/
/*
* Disparado por UART RX
* Para sair do modo de baixo consumo em determinado caracter recebido
*/
void uart_rx_auxiliar(uint8_t c) {}
void wakeUpI2C() {
FLAG_wakeUpI2C = 1;
}
/*
* Interrupção UART (USCI_A1)
*/
__attribute__ ((interrupt(USCI_A1_VECTOR)))
void USCI_A1_ISR (void)
{
switch(UCA1IV)
{
case USCI_UCRXIFG: uart_rx(); break;
case USCI_UCTXIFG: break;
}
__bic_SR_register_on_exit(LPM4_bits);
}
/*
* Interrupção I2C (USCI_B0)
*/
__attribute__ ((interrupt(USCI_B0_VECTOR)))
void USCI_B0_ISR (void)
{
switch(__even_in_range(UCB0IV,12))
{
case 0: break; // Vector 0: No interrupts
case 2: break; // Vector 2: ALIFG
case 4: break; // Vector 4: NACKIFG
case 6: break; // Vector 6: STTIFG
case 8: break; // Vector 8: STPIFG
case 10: // Vector 10: RXIFG
counterRX++;
i2c_rx();
break;
case 12: // Vector 12: TXIFG
counterTX++;
i2c_tx();
break;
default: break;
}
// Sair do modo de baixo consumo caso solicitado
if (FLAG_wakeUpI2C) {
FLAG_wakeUpI2C = 0;
__bic_SR_register_on_exit(LPM0_bits); // Sair do modo LPM0
}
}
/*
* Interrupção do WatchDog
*/
__attribute__((interrupt(WDT_VECTOR)))
void WDT_ISR (void)
{
// Copia para variaveis locais para que possam ser armazenadas em registros
// (variaveis volateis devem ser lidas da memoria em cada acesso)
unsigned long m = wdt_millis;
unsigned int f = wdt_fract;
m += sleeping ? SMILLIS_INC : MILLIS_INC;
f += sleeping ? SFRACT_INC : FRACT_INC;
if (f >= FRACT_MAX) {
f -= FRACT_MAX;
m += 1;
}
wdt_fract = f;
wdt_millis = m;
wdt_overflow_count++;
/* Sair do modo de baixo consumo */
__bic_SR_register_on_exit(LPM0_bits);
}
// Timer0 A0 interrupt service routine
/*__attribute__((interrupt(TIMER_A0_VECTOR)))
void TIMER0_A0_ISR (void)
{
P1OUT ^= 0x01; // Toggle P1.0
}
*/