自制的STM32F10C8T6最小版系统,上位机通过USART1传递一个字符,从而实现LED灯的亮灭,实现过程中觉得进不去中断。硬件没问题。
我PC13、PC15是LED灯。我就不明白我死在哪了。
各位大哥可以帮我看下部分有问题吗?纠结了一天。没有硬件仿真。
我买了F4战舰版,但是老师在讲stm32,我两个一起在学。
**************************************************
#include "stm32f10x.h"
#include "stdio.h"
void GPIO_Config(void);
void NVIC_Config(void);
void EXTI_Config(void);
void USART_Config(void);
u8 RxData = 'a';
void delay(void)
{
u32 t= 0xfffff,i=100;
for(;i>0;i--)
for(;t>0;t--);
}
int main(void)
{
GPIO_Config();
USART_Config();
NVIC_Config();
// EXTI_Config();
USART_ClearITPendingBit(USART1,USART_IT_RXNE);
// printf("a");
GPIO_SetBits(GPIOC,GPIO_Pin_15);
GPIO_ResetBits(GPIOC,GPIO_Pin_13);
EXTI_GenerateSWInterrupt(USART1_IRQn);
while(1)
{
}
}
void GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStruct;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP ;
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA,&GPIO_InitStruct);
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA,&GPIO_InitStruct);
GPIO_PinRemapConfig(GPIO_Remap_USART1,ENABLE);
// GPIO_EXTILineConfig(GPIO_PortSourceGPIOA,GPIO_PinSource9 | GPIO_PinSource10);
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_15;
GPIO_Init(GPIOC,&GPIO_InitStruct);
}
void USART_Config(void)
{
USART_InitTypeDef USART_InitStruct;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 , ENABLE);
USART_InitStruct.USART_BaudRate = 115200;
USART_InitStruct.USART_WordLength = USART_WordLength_8b ;
USART_InitStruct.USART_StopBits = USART_StopBits_1 ;
USART_InitStruct.USART_Parity = USART_Parity_No ;
USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None ;
USART_InitStruct.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(USART1,&USART_InitStruct);
USART_Cmd(USART1, ENABLE); //ê1Äü′®¿ú1
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//¿aÆôÏà1ØÖD¶Ï
//USART_ClearFlag(USART1, USART_FLAG_TC);
}
void NVIC_Config(void) //Usart1 NVIC ÅäÖÃ
{
NVIC_InitTypeDef NVIC_InitStruct;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_4);
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);
}
void EXTI_Config(void)
{
EXTI_InitTypeDef EXIT_InitStruct;
EXIT_InitStruct.EXTI_Line = EXTI_Line9 | EXTI_Line10;
EXIT_InitStruct.EXTI_LineCmd = ENABLE;
EXIT_InitStruct.EXTI_Mode = EXTI_Mode_Interrupt ;
EXIT_InitStruct.EXTI_Trigger = EXTI_Trigger_Rising_Falling;
EXTI_Init(&EXIT_InitStruct);
}
void USART1_IRQHandler(void)
{
if( USART_GetITStatus(USART1,USART_IT_RXNE) != RESET)
{
RxData = USART_ReceiveData(USART1);
USART_ClearITPendingBit(USART1,USART_IT_RXNE);
}
if(RxData == 'a' ) //|'A'
{
GPIO_WriteBit(GPIOC,GPIO_Pin_13 ,(BitAction )(1-GPIO_ReadOutputDataBit(GPIOC,GPIO_Pin_13)));
}
else if(RxData == 'b' ) //|'B'
{
GPIO_WriteBit(GPIOC,GPIO_Pin_15 ,(BitAction )(1-GPIO_ReadOutputDataBit(GPIOC,GPIO_Pin_15)));
}
}
很遗憾不行。
一周热门 更多>