stm32f103c8t6最小核心板 关于串口传输 跪求大神指导

2019-08-17 10:25发布

我想在stm32f103c8t6最小核心板上实现USART1接受数据后产生中断,用USART2发送;USART2接受数据后产生中断,用USART1发送。编译没有错误,但是USART2一直通讯不了。跪求大神指导。

#include "stm32f10x.h"


void My_USART_Init(void)
{

GPIO_InitTypeDef GPIO_InitStructure;        
USART_InitTypeDef USART_InitStructure;        
NVIC_InitTypeDef NVIC_InitStructure;        
        
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);
        
        
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz;        
GPIO_Init(GPIOA,&GPIO_InitStructure);        
        
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz;        
GPIO_Init(GPIOA,&GPIO_InitStructure);               

        
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_2;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz;        
GPIO_Init(GPIOA,&GPIO_InitStructure);        
        
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_3;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_10MHz;        
GPIO_Init(GPIOA,&GPIO_InitStructure);               
        
        
USART_InitStructure.USART_BaudRate=9600;
USART_InitStructure.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
USART_InitStructure.USART_Parity=USART_Parity_No;
USART_InitStructure.USART_StopBits=USART_StopBits_1;
USART_InitStructure.USART_WordLength=USART_WordLength_8b;
USART_Init(USART1,&USART_InitStructure);        

USART_InitStructure.USART_BaudRate=9600;
USART_InitStructure.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode=USART_Mode_Tx|USART_Mode_Rx;
USART_InitStructure.USART_Parity=USART_Parity_No;
USART_InitStructure.USART_StopBits=USART_StopBits_1;
USART_InitStructure.USART_WordLength=USART_WordLength_8b;
USART_Init(USART2,&USART_InitStructure);
        
USART_Cmd(USART1,ENABLE);        //使能串口1
USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);//打开接受中断

USART_Cmd(USART2,ENABLE);        //使能串口2
USART_ITConfig(USART2,USART_IT_RXNE,ENABLE);//打开接受中断



NVIC_InitStructure.NVIC_IRQChannel=USART1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelCmd=ENABLE;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=1;
NVIC_InitStructure.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_InitStructure);

NVIC_InitStructure.NVIC_IRQChannel=USART2_IRQn;
NVIC_InitStructure.NVIC_IRQChannelCmd=ENABLE;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=1;
NVIC_InitStructure.NVIC_IRQChannelSubPriority=2;
NVIC_Init(&NVIC_InitStructure);
}

void USART1_IRQHandler(void)
{
        
        u8 res1;
        
        if(USART_GetITStatus(USART1,USART_IT_RXNE))
        {
        res1=USART_ReceiveData(USART1);
        USART_SendData(USART2,res1);
        }
        


}

void USART2_IRQHandler(void)
{
        
        
        u8 res2;

        if(USART_GetITStatus(USART2,USART_IT_RXNE))
        {
        res2=USART_ReceiveData(USART2);
        USART_SendData(USART1,res2);
        }
        

}


int main(void)
{        
        NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
        My_USART_Init();
        while(1);
         
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答
正点原子
1楼-- · 2019-08-17 16:15
参考我们的串口2例程,先搞通串口2发送数据正常。
异度世界
2楼-- · 2019-08-17 20:48
你这样写有问题的的,你是想接一个字节就发一个字节,这样你在发送这一个字节时很有可能被接收中断打断吧,可以从串口1把数据全部接过来存到数组里,然后再用串口2把这个数组发送出去就可以了
还是看不穿
3楼-- · 2019-08-17 21:02
线接对没有?

一周热门 更多>