[mw_shl_code=c,true]#include "stm32f4xx.h"
#include "stdio.h"
u8 RES;
void USART3_Init()
{
USART_InitTypeDef USART_InitStruct;
GPIO_InitTypeDef GPIO_InitStruct;
NVIC_InitTypeDef NVIC_InitStruct;
/*使能USART、对应GPIO的时钟*/
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3,ENABLE);
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB,ENABLE);
/*连接USART3与GPIO*/
GPIO_PinAFConfig(GPIOB,GPIO_PinSource10,GPIO_AF_USART3);
GPIO_PinAFConfig(GPIOB,GPIO_PinSource11,GPIO_AF_USART3);
/*初始化GPIO,设置复用模式*/
GPIO_InitStruct.GPIO_Mode=GPIO_Mode_AF;
GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;
GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;
GPIO_InitStruct.GPIO_Speed=GPIO_Speed_100MHz;
GPIO_InitStruct.GPIO_Pin=GPIO_Pin_10;
GPIO_Init(GPIOB,&GPIO_InitStruct);
GPIO_InitStruct.GPIO_Pin=GPIO_Pin_11;
GPIO_Init(GPIOB,&GPIO_InitStruct);//由于是用GPIO做其他的事,就没有使能GPIO的东西
/*初始化USART3*/
USART_InitStruct.USART_BaudRate=115200;
USART_InitStruct.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_InitStruct.USART_Mode=USART_Mode_Rx|USART_Mode_Tx;//有三种选择:RX、 TX、 R,TX
USART_InitStruct.USART_Parity=USART_Parity_No;
USART_InitStruct.USART_StopBits=USART_StopBits_1;
USART_InitStruct.USART_WordLength=USART_WordLength_8b;
USART_Init(USART3,&USART_InitStruct);
/*使能中断*/
USART_Cmd(USART3,ENABLE);
/*配置中断NVIC*/
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//选择优先组
NVIC_InitStruct.NVIC_IRQChannel=USART3_IRQn;
NVIC_InitStruct.NVIC_IRQChannelCmd=ENABLE;
NVIC_InitStruct.NVIC_IRQChannelPreemptionPriority=1;
NVIC_InitStruct.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_InitStruct);
/*使能NVIC*/
USART_ITConfig(USART3,USART_IT_RXNE,ENABLE);
}
/*中断服务函数,在startup_stm32f40_41xxx.s的87行*/
void USART3_IRQHandler(void)
{
if(USART_GetITStatus(USART3,USART_IT_RXNE))// 上面用了RXNE使能,那么这里就要用RXNE判断
{
RES=USART_ReceiveData(USART3);//接收
USART_SendData(USART3,RES);//发送
}
}
int main(void)
{
USART3_Init();
while(1)
{
if(RES=='A')
{
printf("123456
");
}
}
}
[/mw_shl_code][mw_shl_code=c,true]#include "stm32f4xx.h"
#include "stdio.h"
u8 RES;
void USART1_Init()
{
USART_InitTypeDef USART_InitStruct;
GPIO_InitTypeDef GPIO_InitStruct;
NVIC_InitTypeDef NVIC_InitStruct;
/*使能USART、对应GPIO的时钟*/
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA,ENABLE);
/*连接USART1与GPIO*/
GPIO_PinAFConfig(GPIOA,GPIO_PinSource9,GPIO_AF_USART1);
GPIO_PinAFConfig(GPIOA,GPIO_PinSource10,GPIO_AF_USART1);
/*初始化GPIO,设置复用模式*/
GPIO_InitStruct.GPIO_Mode=GPIO_Mode_AF;
GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;
GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;
GPIO_InitStruct.GPIO_Speed=GPIO_Speed_100MHz;
GPIO_InitStruct.GPIO_Pin=GPIO_Pin_9;
GPIO_Init(GPIOA,&GPIO_InitStruct);
GPIO_InitStruct.GPIO_Pin=GPIO_Pin_10;
GPIO_Init(GPIOA,&GPIO_InitStruct);//由于是用GPIO做其他的事,就没有使能GPIO的东西
/*初始化USART1*/
USART_InitStruct.USART_BaudRate=115200;
USART_InitStruct.USART_HardwareFlowControl=USART_HardwareFlowControl_None;
USART_InitStruct.USART_Mode=USART_Mode_Rx|USART_Mode_Tx;//有三种选择:RX、 TX、 R,TX
USART_InitStruct.USART_Parity=USART_Parity_No;
USART_InitStruct.USART_StopBits=USART_StopBits_1;
USART_InitStruct.USART_WordLength=USART_WordLength_8b;
USART_Init(USART1,&USART_InitStruct);
/*使能中断*/
USART_Cmd(USART1,ENABLE);
/*配置中断NVIC*/
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//选择优先组
NVIC_InitStruct.NVIC_IRQChannel=USART1_IRQn;
NVIC_InitStruct.NVIC_IRQChannelCmd=ENABLE;
NVIC_InitStruct.NVIC_IRQChannelPreemptionPriority=1;
NVIC_InitStruct.NVIC_IRQChannelSubPriority=1;
NVIC_Init(&NVIC_InitStruct);
/*使能NVIC*/
USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);
}
/*中断服务函数,在startup_stm32f40_41xxx.s的87行*/
void USART1_IRQHandler(void)
{
if(USART_GetITStatus(USART1,USART_IT_RXNE))// 上面用了RXNE使能,那么这里就要用RXNE判断
{
RES=USART_ReceiveData(USART1);//接收
USART_SendData(USART1,RES);//发送
}
}
int main(void)
{
USART1_Init();
while(1)
{
if(RES=='A')
{
printf("123456
");
}
}
}
[/mw_shl_code]
串口1可以打印printf("123456
");
但是串口3为什么没有打印出来??
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>