美文网首页
stm32--数码管

stm32--数码管

作者: 飞向深空 | 来源:发表于2019-04-27 09:33 被阅读0次

    smg.c

    #include "smg.h"
    
    void SMG_INIT()
    {
        GPIO_InitTypeDef GPIO_InitStructure;    //GPIO初始化要配置的结构体定义
        
        RCC_APB2PeriphClockCmd(SMG_PORT_RCC,ENABLE);   //开启APB2总线的时钟
        
        GPIO_InitStructure.GPIO_Pin = SMG_PIN;        //选择要操作的引脚
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;  //工作频率
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;  //模式
        
        GPIO_Init(SMG_PORT,&GPIO_InitStructure);   //初始化端口
    
    }
    

    smg.h

    #ifndef _smg_h
    #define _smg_h
    #include "system.h"
    
    #define SMG_PORT_RCC    RCC_APB2Periph_GPIOC  //定义相应时钟
    #define SMG_PIN         (GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7) //定义对应引脚
    #define SMG_PORT        GPIOC
    
    void SMG_INIT(void);
    
    
    #endif
    
    

    main.c

    
    #include "systick.h"
    #include "led.h"
    #include "system.h"
    #include "smg.h"
    
    
    u8 smgduan[16]={0x3f, 0x06,0x5b, 0x4f, 0x66, 0x6d,0x7d, 0x07, 0x7f, 0x6f, 0x77, 0x7c,0x39, 0x5e, 0x79, 0x71}; //0-F共阴数码管
    int main()
    {
        u8 i=0;
        SysTick_Init(72);  //系统时钟初始
        LED_INIT();  //初始化LED
        SMG_INIT();
    
        while(1)
        {
            for(i=0;i<16;i++)
            {
                GPIO_Write(SMG_PORT,(u16)(~smgduan[i])); //这个函数是往端口写入两个字节,强制转换,低8位是0,板子是共阳,取反是共阴
                delay_ms(1000);         
            }
        }
        
    }
    

    相关文章

      网友评论

          本文标题:stm32--数码管

          本文链接:https://www.haomeiwen.com/subject/kushnqtx.html