求大虾帮助啊,急急急啊,调了3天了,STM32串口通讯实现简单的计算功能,还是调不出,我的配置都正确了,下面是我的it.c里的中断服务函数 #include "stm32f10x_it.h" #include"stdio.h" #include "string.h" static int j=0; void USART1_IRQHandler(void) { int i=1,k,m,n=0,index=0; char str[6]=""; if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)// 如果是串口接收中断 { USART_ClearITPendingBit(USART1,USART_IT_RXNE);//清除USARTx的中断待处理位 USART_ClearFlag(USART1,USART_FLAG_TC); //清除标志位 if(USART_ReceiveData(USART1)!=' ') { str[j]=USART_ReceiveData(USART1); // 将接收到的字节发送出去 j++; } if(USART_ReceiveData(USART1)==' ') { m=strlen(str); <span style="widows: 2; text-transform: none; background-color: rgb(255,255,255); text-indent: 0px; letter-spacing: normal; display: inline !important; font: 14px/21px Tahoma, 'Microsoft Yahei', Simsun; white-space: normal; orphans: 2; float: none; color: rgb(68,68,68); word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"> for(j=0;j |
STM32F107+LWIP---如何检查tcp通讯断开?并重新连接
有没有用过数字式mems麦克风的,想问下SPI通讯的问题
stm32f103 CAN通讯多帧发送问题?
STM32F107作为USB主机模拟串口通讯不成功(采用PL2303芯片)
STM32F103C8 LIN通讯例程
求助,丐版J-Link通讯不上
ethernet可以与ethercat通讯吗?
LIS3DH SPI 通讯问题
STM32F373 CAN通讯问题CAN_FLAG_LEC
请教高手看看,STM32F1的多机通讯,地址匹配唤醒问题
RE:求助大侠,stm32串口通讯实现简单的计算
ch=USART_ReceiveData(USART1);然后对ch进行判断处理。