为什么下面这段代码不能点亮led

2019-07-14 13:23发布

这是main程序
#include "STM32f10x.h"
#include "bsp_usart1.h"
#include "bsp_led.h"


int main(void)
{
        LED_GPIO_Config();
        USART1_Config();
        NVIC_Configuration();
  while(1)
        {
                char ch;
                if(ch=='A')
                {
                 LED1(ON);
    }
                else if(ch=='B')
                {
                 LED1(OFF);
                }

        }
                                       
}                        

这是bsp.usart.c程序
#include "bsp_usart1.h"

/**
  * @brief  USART1 GPIO ÅäÖÃ,¹¤×÷ģʽÅäÖá£9600 8-N-1
  * @param  ÎÞ
  * @retval ÎÞ
  */
     
void USART1_Config(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        
        /* config USART1 clock */
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
        
        /* USART1 GPIO config */
        /* Configure USART1 Tx (PA.09) as alternate function push-pull */
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStructure);   
        /* Configure USART1 Rx (PA.10) as input floating */
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
        GPIO_Init(GPIOA, &GPIO_InitStructure);
        
        /* USART1 mode config */
        USART_InitStructure.USART_BaudRate = 115200;
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
        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_Mode_Tx;
        USART_Init(USART1, &USART_InitStructure);
        
        /* ʹÄÜ´®¿Ú1½ÓÊÕÖÐ¶Ï */
        USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
//        USART_ITConfig(USART1, USART_IT_TXE, ENABLE);
        USART_Cmd(USART1, ENABLE);
}

/// ÅäÖÃUSART1½ÓÊÕÖжÏ
void NVIC_Configuration(void)
{
        NVIC_InitTypeDef NVIC_InitStructure;
        /* Configure the NVIC Preemption Priority Bits */  
        NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
        
        /* Enable the USARTy Interrupt */
        NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;         
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
        NVIC_Init(&NVIC_InitStructure);
}
/******************
ÖжϷþÎñ³ÌÐò
*****************/

void USART1_IRQHandler(void)
{
        uint8_t ch;
        if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
        {         
   
                  ch = USART_ReceiveData(USART1);
                  printf( " %02x ", ch );    //printf·¢ËÍ·½Ê½
               
                  USART_SendData(USART1,ch);         //32¿âº¯Êý·¢ËÍ·½Ê½
                  while(USART_GetFlagStatus(USART1,USART_FLAG_TC)!=SET);
                  USART_ClearFlag(USART1,USART_FLAG_TC);
        }
         
}

/******************
    ¿ÉÒÔ·¢ËÍÒ»¸ö×Ö·û´®
*******************/
void USART1_Send_s(u8 *ch)   
{
        while(*ch)
        {
                USART_SendData(USART1,*ch);
                while(USART_GetFlagStatus(USART1,USART_FLAG_TC)!=SET);
                USART_ClearFlag(USART1,USART_FLAG_TC);
        }
}


/// Öض¨Ïòc¿âº¯Êýprintfµ½USART1
int fputc(int ch, FILE *f)
{
                /* ·¢ËÍÒ»¸ö×Ö½ÚÊý¾Ýµ½USART1 */
                USART_SendData(USART1, (uint8_t) ch);
               
                /* µÈ´ý·¢ËÍÍê±Ï */
                while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET);               
        
                return (ch);
}

/// Öض¨Ïòc¿âº¯Êýscanfµ½USART1
int fgetc(FILE *f)
{
                /* µÈ´ý´®¿Ú1ÊäÈëÊý¾Ý */
                while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET);

                return (int)USART_ReceiveData(USART1);
}
本人菜鸟,求大神指导
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
18条回答
vywyefswer
1楼-- · 2019-07-15 09:03
这能点亮才怪,主循环中ch又没有赋值,按你的思路楼上的回答是对的
qqweqwc
2楼-- · 2019-07-15 14:27
我猜想,你是要根据串口接收到的数据来点亮LED灯,
那么第一,你应该先把串口的收和发的功能都实现;
第二步才来实现根据接收的数据实现对应的功能。
陈囝囝100
3楼-- · 2019-07-15 19:29
kdsnvjsnjk
4楼-- · 2019-07-15 21:20
mian函数和USART中断里的ch变量不是同一个,改为全局变量,中断里不要重新定义
jr3367
5楼-- · 2019-07-15 23:30
 精彩回答 2  元偷偷看……
Sandyjia
6楼-- · 2019-07-16 03:37
没有看到LED1()定义?ch赋的值?

一周热门 更多>