小学生
最后登录1970-1-1
在线时间 小时
注册时间2020-8-4
|
问题 我这个功能是单片机发送数据、为什么usart_config()里面配置了 使能串口接收中断 而不是 使能串口发送中断?
void usart_config(void)
{
GPIO_InitTypeDef GPIO_InitStruct;
USART_InitTypeDef USART_Struct;
//配置GPIOA时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
//GPIO初始化
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStruct);
//配置UART时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
//UART初始化
USART_Struct.USART_BaudRate = 115200;
USART_Struct.USART_HardwareFlowControl = USART_HardwareFlowControl_None ;
USART_Struct.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
USART_Struct.USART_Parity = USART_Parity_No;//校验位
USART_Struct.USART_StopBits = USART_StopBits_1;
USART_Struct.USART_WordLength = USART_WordLength_8b;
USART_Init(USART1, &USART_Struct);
//串口中断优先级配置
NVIC_config();
//使能串口接收中断
USART_ITConfig(USART1, USART_IT_RXNE,ENABLE);
//USART_ITConfig(USART1, USART_IT_TXE, ENABLE);
//使能串口
USART_Cmd(USART1, ENABLE);
}
void NVIC_config(void)
{
NVIC_InitTypeDef NVIC_Struct;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
NVIC_Struct.NVIC_IRQChannel = USART1_IRQn;
NVIC_Struct.NVIC_IRQChannelCmd = ENABLE ;
NVIC_Struct.NVIC_IRQChannelPreemptionPriority = 0;
NVIC_Struct.NVIC_IRQChannelSubPriority = 7;
NVIC_Init(&NVIC_Struct);
}
void Usart_SendByte(USART_TypeDef* pUSARTx, uint8_t data)
{
USART_SendData(pUSARTx, data);
while( USART_GetFlagStatus(pUSARTx, USART_FLAG_TXE) == RESET );
}
int main(void)
{
// 来到这里的时候,系统的时钟已经被配置成72M。
usart_config();
Usart_SendByte(USART1, 100);
while(1)
{
}
}
|
|