本帖最后由 会飞的菜鸡 于 2019-7-18 19:11 编辑
小弟最近在做RS232与PC机的通信实验,使用探索者F407串口2自带的RS232接口,发现一直进不到接收中断函数里面。求大佬指点迷津。附中断程序代码和相关程序文件。
//接收缓存区
u8 RS232_RX_BUF[64]; //接收缓冲,最大64个字节.
//接收到的数据长度
u8 RS232_RX_CNT=0;
void USART2_IRQHandler(void)
{
u8 res;
u8 rs232_tmp_buf[5];
rs232_tmp_buf[0]=1;
rs232_tmp_buf[1]=2;
rs232_tmp_buf[2]=3;
rs232_tmp_buf[3]=4;
rs232_tmp_buf[4]=5;
RS232_Send_Data(rs232_tmp_buf,5);
LED0=!LED0;
if(USART_GetITStatus(USART2, USART_IT_RXNE) != RESET)//接收到数据
{
//USART_ClearITPendingBit(USART2,USART_IT_RXNE);
// res =USART_ReceiveData(USART2);//;读取接收到的数据USART2->DR
res =USART_ReceiveData(USART2);//(USART1->DR); //读取接收到的数据
USART_SendData(USART2,res);
while(USART_GetFlagStatus(USART1,USART_FLAG_TC)!=SET);//等待发送结束
// if(RS232_RX_CNT<64)
// {
// RS232_RX_BUF[RS232_RX_CNT]=res; //记录接收到的值
// RS232_RX_CNT++; //接收数据增加1
//
// rs232_tmp_buf[0]=RS232_RX_CNT;
// rs232_tmp_buf[1]=RS232_RX_CNT;
// rs232_tmp_buf[2]=RS232_RX_CNT;
// rs232_tmp_buf[3]=RS232_RX_CNT;
// rs232_tmp_buf[4]=RS232_RX_CNT;
// RS232_Send_Data(rs232_tmp_buf,5);
// while(USART_GetFlagStatus(USART1,USART_FLAG_TC)!=SET);//等待发送结束
//
// }
}
}
//初始化IO 串口2
//bound:波特率
void RS232_Init(u32 bound)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA,ENABLE); //使能GPIOA时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);//使能USART2时钟
//串口2引脚复用映射
GPIO_PinAFConfig(GPIOA,GPIO_PinSource2,GPIO_AF_USART2); //GPIOA2复用为USART2
GPIO_PinAFConfig(GPIOA,GPIO_PinSource3,GPIO_AF_USART2); //GPIOA3复用为USART2
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_2;//
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF;//
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //推挽复用输出
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOA,&GPIO_InitStructure);//TX
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOA,&GPIO_InitStructure);
//USART2 初始化设置
USART_InitStructure.USART_BaudRate = bound;//波特率设置
USART_InitStructure.USART_WordLength = USART_WordLength_8b;//字长为8位数据格式
USART_InitStructure.USART_StopBits = USART_StopBits_1;//一个停止位
USART_InitStructure.USART_Parity = USART_Parity_No;//无奇偶校验位
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;//无硬件数据流控制
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //收发模式
USART_Init(USART2, &USART_InitStructure); //初始化串口2
USART_Cmd(USART2, ENABLE); //使能串口 2
USART_ClearFlag(USART2, USART_FLAG_TC);
USART_ITConfig(USART2, USART_IT_RXNE, ENABLE);//开启接受中断
//Usart2 NVIC 配置
NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3;//抢占优先级3
NVIC_InitStructure.NVIC_IRQChannelSubPriority =3; //子优先级3
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能
NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器、
}
//RS232发送len个字节.
//buf:发送区首地址
//len:发送的字节数(为了和本代码的接收匹配,这里建议不要超过64个字节)
void RS232_Send_Data(u8 *buf,u8 len)
{
u8 t;
for(t=0;t<len;t++) //循环发送数据
{
while(USART_GetFlagStatus(USART2,USART_FLAG_TC)==RESET); //等待发送结束
USART_SendData(USART2,buf[t]); //发送数据
}
while(USART_GetFlagStatus(USART2,USART_FLAG_TC)==RESET); //等待发送结束
RS232_RX_CNT=0;
}
//RS232查询接收到的数据
//buf:接收缓存首地址
//len:读到的数据长度
void RS232_Receive_Data(u8 *buf,u8 *len)
{
u8 rxlen=RS232_RX_CNT;
u8 i=0;
*len=0; //默认为0
delay_ms(10); //等待10ms,连续超过10ms没有接收到一个数据,则认为接收结束
if((rxlen==RS232_RX_CNT)&&rxlen)//接收到了数据,且接收完成了
{
for(i=0;i<rxlen;i++)
{
buf=RS232_RX_BUF;
}
*len=RS232_RX_CNT; //记录本次数据长度
RS232_RX_CNT=0; //清零
}
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_2;//
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF;//
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //推挽复用输出
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOA,&GPIO_InitStructure);//TX
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOB,&GPIO_InitStructure);
RX 管脚没复用配置吧,推荐使用 CUBEMX 软件,自动生成基本配置
Mode 都是 AF 才对
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_2;//
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF;//
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //íÆíì¸′óÃêä3ö
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //éÏà-
GPIO_Init(GPIOA,&GPIO_InitStructure);//TX
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_OD;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOA,&GPIO_InitStructure);//RX
修改成复用模式,还是不行
GPIO_OType_OD 这个是开漏,你确认是管脚外接了上拉电阻了 ?
一周热门 更多>