STM32编程:实现LED灯闪烁(基于手写SDK的方式)

打印 上一主题 下一主题

主题 975|帖子 975|积分 2925

项目结构


stm32f10x.h 文件

  1. //寄存器的值常常是芯片外设自动更改的,即使CPU没有执行程序,也有可能发生变化
  2. //编译器有可能会对没有执行程序的变量进行优化
  3. //volatile表示易变的变量,防止编译器优化,
  4. #define     __IO    volatile
  5. typedef unsigned int uint32_t;
  6. typedef unsigned short uint16_t;
  7. // GPIO 寄存器结构体定义
  8. typedef struct
  9. {
  10.     __IO uint32_t CRL;       // 端口配置低寄存器,     地址偏移0X00
  11.     __IO uint32_t CRH;       // 端口配置高寄存器,     地址偏移0X04
  12.     __IO uint32_t IDR;       // 端口数据输入寄存器,   地址偏移0X08
  13.     __IO uint32_t ODR;       // 端口数据输出寄存器,   地址偏移0X0C
  14.     __IO uint32_t BSRR;      // 端口位设置/清除寄存器,地址偏移0X10
  15.     __IO uint32_t BRR;       // 端口位清除寄存器,     地址偏移0X14
  16.     __IO uint32_t LCKR;      // 端口配置锁定寄存器,   地址偏移0X18
  17. } GPIO_TypeDef;
  18. /*片上外设基地址  */
  19. #define PERIPH_BASE           ((unsigned int)0x40000000)
  20. /*APB2 总线基地址 */
  21. #define APB2PERIPH_BASE       (PERIPH_BASE + 0x10000)
  22. /* AHB总线基地址 */
  23. #define AHBPERIPH_BASE        (PERIPH_BASE + 0x20000)
  24. /*GPIO外设基地址*/
  25. #define GPIOA_BASE            (APB2PERIPH_BASE + 0x0800)
  26. #define GPIOB_BASE            (APB2PERIPH_BASE + 0x0C00)
  27. #define GPIOC_BASE            (APB2PERIPH_BASE + 0x1000)
  28. #define GPIOD_BASE            (APB2PERIPH_BASE + 0x1400)
  29. #define GPIOE_BASE            (APB2PERIPH_BASE + 0x1800)
  30. #define GPIOF_BASE            (APB2PERIPH_BASE + 0x1C00)
  31. #define GPIOG_BASE            (APB2PERIPH_BASE + 0x2000)
  32. /*RCC外设基地址*/
  33. #define RCC_BASE      (AHBPERIPH_BASE + 0x1000)
  34. // GPIO 外设声明
  35. #define GPIOA               ((GPIO_TypeDef *) GPIOA_BASE)
  36. #define GPIOB               ((GPIO_TypeDef *) GPIOB_BASE)
  37. #define GPIOC               ((GPIO_TypeDef *) GPIOC_BASE)
  38. #define GPIOD               ((GPIO_TypeDef *) GPIOD_BASE)
  39. #define GPIOE               ((GPIO_TypeDef *) GPIOE_BASE)
  40. #define GPIOF               ((GPIO_TypeDef *) GPIOF_BASE)
  41. #define GPIOG               ((GPIO_TypeDef *) GPIOG_BASE)
  42. // RCC 外设声明
  43. #define RCC                 ((RCC_TypeDef *) RCC_BASE)
  44. /*RCC的AHB1时钟使能寄存器地址,强制转换成指针*/
  45. #define RCC_APB2ENR      *(unsigned int*)(RCC_BASE+0x18)
  46.        
  47. /*GPIO引脚号定义*/
  48. #define GPIO_Pin_0              ((uint16_t)0x0001)  /*!< 选择Pin0 (1<<0) */
  49. #define GPIO_Pin_1              ((uint16_t)0x0002)  /*!< 选择Pin1 (1<<1)*/
  50. #define GPIO_Pin_2              ((uint16_t)0x0004)  /*!< 选择Pin2 (1<<2)*/
  51. #define GPIO_Pin_3              ((uint16_t)0x0008)  /*!< 选择Pin3 (1<<3)*/
  52. #define GPIO_Pin_4              ((uint16_t)0x0010)  /*!< 选择Pin4 */
  53. #define GPIO_Pin_5              ((uint16_t)0x0020)  /*!< 选择Pin5 */
  54. #define GPIO_Pin_6              ((uint16_t)0x0040)  /*!< 选择Pin6 */
  55. #define GPIO_Pin_7              ((uint16_t)0x0080)  /*!< 选择Pin7 */
  56. #define GPIO_Pin_8              ((uint16_t)0x0100)  /*!< 选择Pin8 */
  57. #define GPIO_Pin_9              ((uint16_t)0x0200)  /*!< 选择Pin9 */
  58. #define GPIO_Pin_10             ((uint16_t)0x0400)  /*!< 选择Pin10 */
  59. #define GPIO_Pin_11             ((uint16_t)0x0800)  /*!< 选择Pin11 */
  60. #define GPIO_Pin_12             ((uint16_t)0x1000)  /*!< 选择Pin12 */
  61. #define GPIO_Pin_13             ((uint16_t)0x2000)  /*!< 选择Pin13 */
  62. #define GPIO_Pin_14             ((uint16_t)0x4000)  /*!< 选择Pin14 */
  63. #define GPIO_Pin_15             ((uint16_t)0x8000)  /*!< 选择Pin15 */
  64. #define GPIO_Pin_All            ((uint16_t)0xFFFF)  /*!< 选择全部引脚 */
  65.        
  66. /**
  67. * GPIO输出速率枚举定义
  68. */
  69. typedef enum
  70. {
  71.     GPIO_Speed_10MHz = 1,         // 10MHZ        (01)b
  72.     GPIO_Speed_2MHz,              // 2MHZ         (10)b
  73.     GPIO_Speed_50MHz              // 50MHZ        (11)b
  74. } GPIOSpeed_TypeDef;
  75. /**
  76. * GPIO工作模式枚举定义
  77. */
  78. typedef enum
  79. {
  80.     GPIO_Mode_AIN = 0x0,           // 模拟输入     (0000 0000)b
  81.     GPIO_Mode_IN_FLOATING = 0x04,  // 浮空输入     (0000 0100)b
  82.     GPIO_Mode_IPD = 0x28,          // 下拉输入     (0010 1000)b
  83.     GPIO_Mode_IPU = 0x48,          // 上拉输入     (0100 1000)b
  84.     GPIO_Mode_Out_OD = 0x14,       // 开漏输出     (0001 0100)b
  85.     GPIO_Mode_Out_PP = 0x10,       // 推挽输出     (0001 0000)b
  86.     GPIO_Mode_AF_OD = 0x1C,        // 复用开漏输出  (0001 1100)b
  87.     GPIO_Mode_AF_PP = 0x18         // 复用推挽输出  (0001 1000)b
  88. } GPIOMode_TypeDef;
  89. /**
  90. * GPIO初始化结构体类型定义
  91. */
  92. typedef struct
  93. {
  94.     uint16_t GPIO_Pin;             /*!< 选择要配置的GPIO引脚
  95.                                     可输入 GPIO_Pin_ 定义的宏 */
  96.     GPIOSpeed_TypeDef GPIO_Speed;  /*!< 选择GPIO引脚的速率
  97.                                     可输入 GPIOSpeed_TypeDef 定义的枚举值 */
  98.     GPIOMode_TypeDef GPIO_Mode;    /*!< 选择GPIO引脚的工作模式
  99.                                     可输入 GPIOMode_TypeDef 定义的枚举值 */
  100. } GPIO_InitTypeDef;
  101. void GPIO_ResetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  102. void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
  103. void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct);
复制代码
stm32f10x.c 文件

  1. #include "stm32f10x.h"
  2. /**
  3. *函数功能:设置引脚为低电平
  4. *参数说明:GPIOx:该参数为GPIO_TypeDef类型的指针,指向GPIO端口的地址
  5. *        GPIO_Pin:选择要设置的GPIO端口引脚,可输入宏GPIO_Pin_0-15,
  6. *                 表示GPIOx端口的0-15号引脚。
  7. */
  8. void GPIO_ResetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)
  9. {
  10.     /*设置GPIOx端口BRR寄存器的第GPIO_Pin位,使其输出低电平*/
  11.     /*因为BRR寄存器写0不影响,
  12.     宏GPIO_Pin只是对应位为1,其它位均为0,所以可以直接赋值*/
  13.     GPIOx->BRR = GPIO_Pin;
  14. }
  15. /**
  16. *函数功能:设置引脚为高电平
  17. *参数说明:GPIOx:该参数为GPIO_TypeDef类型的指针,指向GPIO端口的地址
  18. *        GPIO_Pin:选择要设置的GPIO端口引脚,可输入宏GPIO_Pin_0-15,
  19. *                 表示GPIOx端口的0-15号引脚。
  20. */
  21. void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)
  22. {
  23.     /*设置GPIOx端口BSRR寄存器的第GPIO_Pin位,使其输出高电平*/
  24.     /*因为BSRR寄存器写0不影响,
  25.     宏GPIO_Pin只是对应位为1,其它位均为0,所以可以直接赋值*/
  26.     GPIOx->BSRR = GPIO_Pin;
  27. }
  28. /**
  29. *函数功能:初始化引脚模式
  30. *参数说明:GPIOx,该参数为GPIO_TypeDef类型的指针,指向GPIO端口的地址
  31. *         GPIO_InitTypeDef:GPIO_InitTypeDef结构体指针,指向初始化变量
  32. */
  33. void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct)
  34. {
  35.     uint32_t currentmode =0x00,currentpin = 0x00,pinpos = 0x00,pos = 0x00;
  36.     uint32_t tmpreg = 0x00, pinmask = 0x00;
  37.     /*---------------- GPIO 模式配置 -------------------*/
  38.     // 把输入参数GPIO_Mode的低四位暂存在currentmode
  39.     currentmode = ((uint32_t)GPIO_InitStruct->GPIO_Mode) &
  40.                 ((uint32_t)0x0F);
  41.     // bit4是1表示输出,bit4是0则是输入
  42.     // 判断bit4是1还是0,即首选判断是输入还是输出模式
  43.     if ((((uint32_t)GPIO_InitStruct->GPIO_Mode) &
  44.             ((uint32_t)0x10)) != 0x00)
  45.     {
  46.         // 输出模式则要设置输出速度
  47.         currentmode |= (uint32_t)GPIO_InitStruct->GPIO_Speed;
  48.     }
  49.     /*-----GPIO CRL 寄存器配置 CRL寄存器控制着低8位IO- ----*/
  50.     // 配置端口低8位,即Pin0~Pin7
  51.     if (((uint32_t)GPIO_InitStruct->GPIO_Pin &
  52.             ((uint32_t)0x00FF)) != 0x00)
  53.     {
  54.         // 先备份CRL寄存器的值
  55.         tmpreg = GPIOx->CRL;
  56.         // 循环,从Pin0开始配对,找出具体的Pin
  57.         for (pinpos = 0x00; pinpos < 0x08; pinpos++)
  58.         {
  59.             // pos的值为1左移pinpos位
  60.             pos = ((uint32_t)0x01) << pinpos;
  61.             // 令pos与输入参数GPIO_PIN作位与运算
  62.             currentpin = (GPIO_InitStruct->GPIO_Pin) & pos;
  63.             //若currentpin=pos,则找到使用的引脚
  64.             if (currentpin == pos)
  65.             {
  66.                 //pinpos的值左移两位(乘以4),因为寄存器中4个位配置一个引脚
  67.                 pos = pinpos << 2;
  68.                 //把控制这个引脚的4个寄存器位清零,其它寄存器位不变
  69.                 pinmask = ((uint32_t)0x0F) << pos;
  70.                 tmpreg &= ~pinmask;
  71.                 // 向寄存器写入将要配置的引脚的模式
  72.                 tmpreg |= (currentmode << pos);
  73.                 // 判断是否为下拉输入模式
  74.                 if (GPIO_InitStruct->GPIO_Mode == GPIO_Mode_IPD)
  75.                 {
  76.                     // 下拉输入模式,引脚默认置0,对BRR寄存器写1对引脚置0
  77.                     GPIOx->BRR = (((uint32_t)0x01) << pinpos);
  78.                 }
  79.                 else
  80.                 {
  81.                     // 判断是否为上拉输入模式
  82.                     if (GPIO_InitStruct->GPIO_Mode == GPIO_Mode_IPU)
  83.                     {
  84.                         // 上拉输入模式,引脚默认值为1,对BSRR寄存器写1对引脚置1
  85.                         GPIOx->BSRR = (((uint32_t)0x01) << pinpos);
  86.                     }
  87.                 }
  88.             }
  89.         }
  90.         // 把前面处理后的暂存值写入到CRL寄存器之中
  91.         GPIOx->CRL = tmpreg;
  92.     }
  93.     /*--------GPIO CRH 寄存器配置 CRH寄存器控制着高8位IO- -----*/
  94.     // 配置端口高8位,即Pin8~Pin15
  95.     if (GPIO_InitStruct->GPIO_Pin > 0x00FF)
  96.     {
  97.         // // 先备份CRH寄存器的值
  98.         tmpreg = GPIOx->CRH;
  99.         // 循环,从Pin8开始配对,找出具体的Pin
  100.         for (pinpos = 0x00; pinpos < 0x08; pinpos++)
  101.         {
  102.             pos = (((uint32_t)0x01) << (pinpos + 0x08));
  103.             // pos与输入参数GPIO_PIN作位与运算
  104.             currentpin = ((GPIO_InitStruct->GPIO_Pin) & pos);
  105.             //若currentpin=pos,则找到使用的引脚
  106.             if (currentpin == pos)
  107.             {
  108.                 //pinpos的值左移两位(乘以4),因为寄存器中4个位配置一个引脚
  109.                 pos = pinpos << 2;
  110.                 //把控制这个引脚的4个寄存器位清零,其它寄存器位不变
  111.                 pinmask = ((uint32_t)0x0F) << pos;
  112.                 tmpreg &= ~pinmask;
  113.                 // 向寄存器写入将要配置的引脚的模式
  114.                 tmpreg |= (currentmode << pos);
  115.                 // 判断是否为下拉输入模式
  116.                 if (GPIO_InitStruct->GPIO_Mode == GPIO_Mode_IPD)
  117.                 {
  118.                     // 下拉输入模式,引脚默认置0,对BRR寄存器写1可对引脚置0
  119.                     GPIOx->BRR = (((uint32_t)0x01) << (pinpos + 0x08));
  120.                 }
  121.                 // 判断是否为上拉输入模式
  122.                 if (GPIO_InitStruct->GPIO_Mode == GPIO_Mode_IPU)
  123.                 {
  124.                     // 上拉输入模式,引脚默认值为1,对BSRR寄存器写1可对引脚置1
  125.                     GPIOx->BSRR = (((uint32_t)0x01) << (pinpos + 0x08));
  126.                 }
  127.             }
  128.         }
  129.         // 把前面处理后的暂存值写入到CRH寄存器之中
  130.         GPIOx->CRH = tmpreg;
  131.     }
  132. }
复制代码
main.c 文件

  1. #ifndef STM32F10X // 防止重复引入报错
  2. #define STM32F10X
  3. #endif
  4. #include "stm32f10x.h"
  5. // 函数为空,目的是为了骗过编译器不报错
  6. void SystemInit(void)
  7. {
  8. }
  9. void Delay(__IO uint32_t nCount)     //简单的延时函数
  10. {
  11.     for (; nCount != 0; nCount--);
  12. }
  13. // 使用固件库点亮LED
  14. int main(void)
  15. {
  16.     // 定义一个GPIO_InitTypeDef类型的结构体
  17.     GPIO_InitTypeDef GPIO_InitStructure;
  18.     // 开启GPIO端口时钟
  19.     RCC_APB2ENR |= (1<<3);
  20.     // 选择要控制的GPIO引脚
  21.     GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
  22.     // 设置引脚模式为通用推挽输出
  23.     GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  24.     // 设置引脚速率为50MHz
  25.     GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  26.     // 调用库函数,初始化GPIO引脚
  27.     GPIO_Init(GPIOB, &GPIO_InitStructure);
  28.        
  29.                 // ======PB0口闪烁======
  30.     // 使引脚输出低电平,点亮LED1
  31.     GPIO_ResetBits(GPIOB,GPIO_Pin_0);
  32.     while (1)
  33.     {
  34.         // 使引脚输出低电平,点亮LED
  35.         GPIO_ResetBits(GPIOB,GPIO_Pin_0);
  36.         /*延时一段时间*/
  37.         Delay(0xFFFF);
  38.         /*使引脚输出高电平,关闭LED1*/
  39.         GPIO_SetBits(GPIOB,GPIO_Pin_0);
  40.         /*延时一段时间*/
  41.         Delay(0xFFFF);
  42.     }
  43. }
复制代码
LED灯一头接入PB0,一头接入GND,收录之后,即可实现闪烁效果。


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

熊熊出没

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表