新手上路
- 积分
- 31
- 金钱
- 31
- 注册时间
- 2014-3-18
- 在线时间
- 0 小时
|
5金钱
主要是usart1的程序,led的配置不贴出来的:进不了中断
u8 flag_usart;
u8 flag_on;
//初始化IO 串口1
//bound:波特率
void uart_init(u32 bound)
{
//GPIO端口设置
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1|RCC_APB2Periph_GPIOA, ENABLE); //使能USART1,GPIOA时钟
USART_DeInit(USART1); //复位串口1
//USART1_TX PA.9
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; //PA.9
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出
GPIO_Init(GPIOA, &GPIO_InitStructure); //初始化PA9
//USART1_RX   A.10
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//浮空输入
GPIO_Init(GPIOA, &GPIO_InitStructure); //初始化PA10
//Usart1 NVIC 配置
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=1 ;//抢占优先级3
NVIC_InitStructure.NVIC_IRQChannelSubPriority =1; //子优先级3
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能
NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器
//USART 初始化设置
USART_InitStructure.USART_BaudRate = bound;//一般设置为9600;
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_Init(USART1, &USART_InitStructure); //初始化串口
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//开启中断
USART_Cmd(USART1, ENABLE); //使能串口
}
void NVIC_Configuration(void)
{
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
}
void USART1_IRQHandler(void) //串口1中断服务程序
{
u8 a;
if(USART_GetITStatus(USART1, USART_IT_RXNE)== SET)
{
LED4=1;//接受到数据led4亮
USART_ClearITPendingBit(USART1, USART_IT_RXNE);
a =USART_ReceiveData(USART1);//(USART1->DR); //读取接收到的数据
flag_usart=1;
if(a==1) flag_on=0;
else if(a==2) flag_on=1;
else if(a==3) flag_on=2;
else flag_on=3;
}
}
int main(void)
{
delay_init();
NVIC_Configuration();
uart_init(19200);
LED_Init();
while(1)
{
if(flag_usart==1) //中断接受数据是否接受完成
{
flag_usart=0;
switch(flag_on)
{
case 0:
LED2!=LED2;
break;
case 1:
LED3!=LED3;
break;
case 2:
LED4 !=LED4;
break;
case 3:
LED5!=LED5;
break;
}
}
}
}
|
|