-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstm32f10x_it.c
474 lines (430 loc) · 10.9 KB
/
stm32f10x_it.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/**
******************************************************************************
* @file Project/STM32F10x_StdPeriph_Template/stm32f10x_it.c
* @author MCD Application Team
* @version V3.5.0
* @date 08-April-2011
* @brief Main Interrupt Service Routines.
* This file provides template for all exceptions handler and
* peripherals interrupt service routine.
******************************************************************************
* @attention
*
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
* TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*
* <h2><center>© COPYRIGHT 2011 STMicroelectronics</center></h2>
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "stm32f10x_it.h"
#include <stdio.h>
#include "upstandingcar.h"
#include "outputdata.h"
#include "mpu6050.h"
#include "UltrasonicWave.h"
#include "stm32f10x_exti.h"
#include "bsp_spi_nrf.h"
#include "I2C_DEVICE_LIST.h"
#include "usart.h"
// #include "Anyway_Kalman.h"
uint8_t status_TX=0;
uint8_t STM32_DATA_TEMP[32];
u8 BST_u8MainEventCount=0;
unsigned int TIME_PASED=0;
extern char NRF_CONNECT_USE_ENABLE;
extern char BLE_CONNECT_USE_ENABLE;
extern char UART_CONNECT_USE_ENABLE;
extern char MEMS_DEVICE_NUM;
u8 keystatus=0;
u8 Roller_KEY=0;
u8 keystatus_flag=0;
int doubleclick_time=0,click_num=0;
/** @addtogroup STM32F10x_StdPeriph_Template
* @{
*/
/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/
/******************************************************************************/
/* Cortex-M3 Processor Exceptions Handlers */
/******************************************************************************/
/**
* @brief This function handles NMI exception.
* @param None
* @retval None
*/
void NMI_Handler(void)
{
}
/**
* @brief This function handles Hard Fault exception.
* @param None
* @retval None
*/
void HardFault_Handler(void)
{
/* Go to infinite loop when Hard Fault exception occurs */
while (1)
{
}
}
/**
* @brief This function handles Memory Manage exception.
* @param None
* @retval None
*/
void MemManage_Handler(void)
{
/* Go to infinite loop when Memory Manage exception occurs */
while (1)
{
}
}
/**
* @brief This function handles Bus Fault exception.
* @param None
* @retval None
*/
void BusFault_Handler(void)
{
/* Go to infinite loop when Bus Fault exception occurs */
while (1)
{
}
}
/**
* @brief This function handles Usage Fault exception.
* @param None
* @retval None
*/
void UsageFault_Handler(void)
{
/* Go to infinite loop when Usage Fault exception occurs */
while (1)
{
}
}
/**
* @brief This function handles SVCall exception.
* @param None
* @retval None
*/
void SVC_Handler(void)
{
}
/**
* @brief This function handles Debug Monitor exception.
* @param None
* @retval None
*/
void DebugMon_Handler(void)
{
}
/**
* @brief This function handles PendSVC exception.
* @param None
* @retval None
*/
void PendSV_Handler(void)
{
}
/**
* @brief This function handles SysTick Handler.
* @param None
* @retval None
*/
#if 1
void SysTick_Handler(void) //2ms定时器
{
u8 status=0;
BST_u8MainEventCount++; //总循环计数值
if(BST_u8MainEventCount>=10) //ACCEL+GYRO_3
{
BST_u8MainEventCount=0;
TIME_PASED++;
if(TIME_PASED==400)//2.4s
{
TIME_PASED=0;
if(NRF_CONNECT_USE_ENABLE==2)
{
status = NRF_Check();
if(status==0)
{
NRF_CONNECT_USE_ENABLE=2;
GPIO_SetBits(GPIOB, GPIO_Pin_3);//熄灭NRF LED
}
else
{
NRF_CONNECT_USE_ENABLE=1;
GPIO_ResetBits(GPIOB, GPIO_Pin_3);//点亮NRF LED
}
}
if(BLE_CONNECT_USE_ENABLE==2)
{
status = BLE_Init();//设置密码为123456
if(status==0)
{
BLE_CONNECT_USE_ENABLE=2;
GPIO_SetBits(GPIOB, GPIO_Pin_5);//熄灭NRF LED
}
else
{
BLE_CONNECT_USE_ENABLE=1;
GPIO_ResetBits(GPIOB, GPIO_Pin_5);//点亮NRF LED
}
}
}
}
else if(BST_u8MainEventCount==1)//ACCEL
{
////以下内容为FIFO 测试使用,使用前请屏蔽其他功能
status_TX=READ_ACCEL();
if(status_TX==1)
{
status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
if(status_TX==0)
{
//UART => SEND ERROR
}
}
}
// else if(BST_u8MainEventCount==2)//MAG
// {
//// status_TX=READ_MAG();
//// if(status_TX==1)
//// {
//// status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
//// if(status_TX==0)
//// {
//// //UART => SEND ERROR
//// }
//// }
// }
else if(BST_u8MainEventCount==2)//ACCEL+GYRO_1
{
////以下内容为FIFO 测试使用,使用前请屏蔽其他功能
// status_TX=READ_SIX_FIFO_TEST();
// if(status_TX==1)
// {
// status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
// if(status_TX==0)
// {
// //UART => SEND ERROR
// }
// }
// GPIOB->ODR^=GPIO_Pin_11;
status_TX=READ_SIX_1();
if(status_TX==1)
{
status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
if(status_TX==0)
{
//UART => SEND ERROR
}
}
}
else if(BST_u8MainEventCount==3)//ACCEL+GYRO_2
{
status_TX=READ_SIX_2();
if(status_TX==1)
{
status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
if(status_TX==0)
{
//UART => SEND ERROR
}
}
}
// else if(BST_u8MainEventCount==3)////ACCEL+GYRO_3
// {
// status_TX=READ_SIX_3();
// if(status_TX==1)
// {
// status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
// if(status_TX==0)
// {
// //UART => SEND ERROR
// }
// }
// }
else if(BST_u8MainEventCount==4)//气压计
{
static u8 Button_up_flag=1;
static u8 Button_up_num=0;
u8 KEY_NUM_TH=3;
static u8 left_num=0,right_num=0,up_num=0,down_num=0;
if(GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_12)==0||
GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_13)==0||
GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_14)==0||
GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_15)==0
)
{
if(GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_12)==0)
{
doubleclick_time++;
left_num++;
down_num=0;
right_num=0;
up_num=0;
}
else if(GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_13)==0)
{
down_num++;
left_num=0;
right_num=0;
up_num=0;
}
else if(GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_14)==0)
{
right_num++;
left_num=0;
down_num=0;
up_num=0;
}
else if(GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_15)==0)
{
up_num++;
left_num=0;
down_num=0;
right_num=0;
}
if(left_num>KEY_NUM_TH)
{
keystatus=0X01;
left_num=0;
keystatus_flag=keystatus_flag|0x01;
}
else if(right_num>KEY_NUM_TH)
{
keystatus=0X02;
right_num=0;
}
else if(down_num>KEY_NUM_TH)
{
Roller_KEY=-1;
down_num=0;
}
else if(up_num>KEY_NUM_TH)
{
Roller_KEY=1;
up_num=0;
}
Button_up_flag=1;
}
else
{
up_num=0;
left_num=0;
down_num=0;
right_num=0;
if(Button_up_flag==1)
Button_up_num++;
if(Button_up_num>5)
{
Button_up_flag=0;
Button_up_num=0;
keystatus=0X00;
Roller_KEY=0;
}
}
// status_TX=READ_SIX_3();
// if(status_TX==1)
// {
// status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
// if(status_TX==0)
// {
// //UART => SEND ERROR
// }
// }
}
else if(BST_u8MainEventCount==5)//心率计
{
// status_TX=READ_Heart_Rate();
// if(status_TX==1)
// {
// status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
// if(status_TX==0)
// {
// //UART => SEND ERROR
// }
// }
}
}
#endif
void EXTI15_10_IRQHandler(void)
{
EXTI_ClearITPendingBit(EXTI_Line15);
////加速度计 FIFO 中断实验
// status_TX=READ_FIFO_ACCEL();
// if(status_TX==1)
// {
// status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
// if(status_TX==0)
// {
// //UART => SEND ERROR
// }
// }
//心率计 中断实验
status_TX=READ_Heart_Rate();//心率计
if(status_TX==1)
{
status_TX=NRF_Tx_Dat(STM32_DATA);//SEND_DATA
if(status_TX==0)
{
//UART => SEND ERROR
}
}
}
void USART3_IRQHandler(void)
{
/*
u8 ucBluetoothValue;
if(USART3->SR&(1<<5))//接收到数据
{
ucBluetoothValue=USART1->DR;
}
if(USART_GetITStatus(USART3, USART_IT_RXNE) != RESET)
{
ucBluetoothValue = USART_ReceiveData(USART3);
switch (ucBluetoothValue)
{
case 0x02 : g_fBluetoothSpeed = 500 ; break; //前进
case 0x01 : g_fBluetoothSpeed = (-500); break; //后退
case 0x03 : g_fBluetoothDirection = 100 ; break;//左转
case 0x04 : g_fBluetoothDirection = (-100); break;//右转
case 0x05 : g_fBluetoothSpeed = 1000 ; break ;
case 0x06 : g_fBluetoothSpeed = (-1000); break ;
case 0x07 : g_fBluetoothDirection = 500 ; break;
case 0x08 : g_fBluetoothDirection = (-500); break;
default : g_fBluetoothSpeed = 0; g_fBluetoothDirection = 0;break;
}
USART_ClearITPendingBit(USART3, USART_IT_RXNE); //清除中断标志
}
*/
}
/******************************************************************************/
/* STM32F10x Peripherals Interrupt Handlers */
/* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */
/* available peripheral interrupt handler's name please refer to the startup */
/* file (startup_stm32f10x_xx.s). */
/******************************************************************************/
/**
* @brief This function handles PPP interrupt request.
* @param None
* @retval None
*/
/*void PPP_IRQHandler(void)
{
}*/
/**
* @}
*/
/******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/