usart.c串口中止处理函数:
[cpp]view plaincopy
- voidUSART1_IRQHandler(void)
- {
- u8res;
- if(USART1->SR&(1<<5))//接纳到数据
- {
- res=USART1->DR;
- if(USART1_Recv_Len
- {
- TIM3->CNT=0;//计数器清空
- if(Rec_Over_Flag==0)TIM3_Set(1);//使能定时器4的中止
- USART1_RX_BUF[USART1_Recv_Len++]=res;//记载接纳到的值
- }else
- {
- Rec_Over_Flag=1;//强制符号接纳完结
- }
- }
- }
- timer.c定时器中止函数
- //定时器3中止服务程序
- voidTIM3_IRQHandler(void)
- {
- if(TIM3->SR&0X0001)//溢出中止
- {
- Rec_Over_Flag=1;
- TIM3->SR&=~(1<<0);//铲除中止标志位
- TIM3_Set(0);
- LED1=!LED1;//RxTimeout等于0,改换LED1标明该次发送完毕
- }
- }
- //设置TIM4的开关
- //sta:0,封闭;1,敞开;
- voidTIM3_Set(u8sta)
- {
- if(sta)
- {
- TIM3->CNT=0;//计数器清空
- TIM3->CR1|=1<<0;//使能定时器3
- }elseTIM3->CR1&=~(1<<0);//封闭定时器3
- }
main.c主函数
[cpp]view plaincopy
- intmain(void)
- {
- u8t;
- u8Password[7]=”123456″;
- u8Tishi1[]=”操作码长度不对”;
- u8Tishi2[]=”操作码不正确”;
- u8Tishi3[]=”指令成功履行!”;
- u16times=0;
- Stm32_Clock_Init(9);//体系时钟设置
- delay_init(72);//延时初始化
- uart_init(72,57600);//串口初始化为57600
- LED_Init();//初始化与LED衔接的硬件接口
- Timerx_Init(99,7199);//10kHz的技能频率,计数到100为10ms
- while(1)
- {
- if(Rec_Over_Flag==1)
- {
- if(USART1_Recv_Len!=0x06)//USART1_Recv_Len接纳数据的长度不等于6
- {
- Putstrings(Tishi1);
- }
- else//USART1_Recv_Len接纳数据的长度等于6
- {
- for(t=0;t
- {
- if(USART1_RX_BUF[t]!=Password[t])
- {
- Putstrings(Tishi2);
- break;
- }
- elseif(t==(USART1_Recv_Len-1))
- {
- Putstrings(Tishi3);
- LED0=!LED0;
- }
- }
- }
- Rec_Over_Flag=0;
- USART1_Recv_Len=0;
- }
- else
- {
- times++;
- //if(times%30==0)LED1=!LED1;//闪耀LED,提示体系正在运转.
- //if(times%30==0)RxTimeout–;
- delay_ms(10);
- }
- }
- }
- //————输出字符串到串口——————-
- voidPutstrings(u8*ptr)
- {
- while(*ptr!=)
- {
- USART1->DR=*ptr++;
- while((USART1->SR&0X40)==0);//等候发送完毕
- }
- USART1->DR=;
- }
[cpp]view plaincopy