STM32初学条记

打印 上一主题 下一主题

主题 950|帖子 950|积分 2850

一、STM32工程模板

Library文件夹放置各种库,固定不修改。 
 

  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. int main(void)
  4. {
  5.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
  6.         GPIO_InitTypeDef GPIO_InitStructure;
  7.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  8.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
  9.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  10.         GPIO_Init(GPIOC, &GPIO_InitStructure);
  11.         GPIO_SetBits(GPIOC, GPIO_Pin_13);
  12. //        GPIO_ResetBits(GPIOC, GPIO_Pin_13);
  13.         while(1)
  14.         {
  15.        
  16.         }
  17. }
复制代码
  stlink和stm32连线:
  SWDIO->SWIO
  GND->GND
  SWCLK->SWCLK
  3.3V->3V3 
  二、GPIO输出与输入

   GPIO输出 
  2.1 LED闪烁

添加Delay函数和main.c 

  1. //Delay.h
  2. #ifndef __DELAY_H
  3. #define __DELAY_H
  4. void Delay_us(uint32_t us);
  5. void Delay_ms(uint32_t ms);
  6. void Delay_s(uint32_t s);
  7. #endif
  8. //Delay.c
  9. #include "stm32f10x.h"
  10. /**
  11.   * @brief  微秒级延时
  12.   * @param  xus 延时时长,范围:0~233015
  13.   * @retval 无
  14.   */
  15. void Delay_us(uint32_t xus)
  16. {
  17.         SysTick->LOAD = 72 * xus;                                //设置定时器重装值
  18.         SysTick->VAL = 0x00;                                        //清空当前计数值
  19.         SysTick->CTRL = 0x00000005;                                //设置时钟源为HCLK,启动定时器
  20.         while(!(SysTick->CTRL & 0x00010000));        //等待计数到0
  21.         SysTick->CTRL = 0x00000004;                                //关闭定时器
  22. }
  23. /**
  24.   * @brief  毫秒级延时
  25.   * @param  xms 延时时长,范围:0~4294967295
  26.   * @retval 无
  27.   */
  28. void Delay_ms(uint32_t xms)
  29. {
  30.         while(xms--)
  31.         {
  32.                 Delay_us(1000);
  33.         }
  34. }
  35. /**
  36.   * @brief  秒级延时
  37.   * @param  xs 延时时长,范围:0~4294967295
  38.   * @retval 无
  39.   */
  40. void Delay_s(uint32_t xs)
  41. {
  42.         while(xs--)
  43.         {
  44.                 Delay_ms(1000);
  45.         }
  46. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. int main(void)
  5. {
  6.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
  7.        
  8.         GPIO_InitTypeDef GPIO_InitStructure;
  9.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  10.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
  11.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  12.         GPIO_Init(GPIOA,&GPIO_InitStructure);
  13.        
  14.         while(1)
  15.         {
  16.                 GPIO_ResetBits(GPIOA, GPIO_Pin_0);
  17.                 Delay_ms(500);
  18.                 GPIO_SetBits(GPIOA, GPIO_Pin_0);
  19.                 Delay_ms(500);
  20.                
  21.                 GPIO_WriteBit(GPIOA, GPIO_Pin_0,Bit_RESET);
  22.                 Delay_ms(500);
  23.                 GPIO_WriteBit(GPIOA, GPIO_Pin_0,Bit_SET);
  24.                 Delay_ms(500);
  25.                
  26.                 GPIO_WriteBit(GPIOA, GPIO_Pin_0,(BitAction)0);
  27.                 Delay_ms(500);
  28.                 GPIO_WriteBit(GPIOA, GPIO_Pin_0,(BitAction)1);
  29.                 Delay_ms(500);
  30.         }
  31. }
复制代码
2.2  LED流水灯


  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. int main(void)
  5. {
  6.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
  7.        
  8.         GPIO_InitTypeDef GPIO_InitStructure;
  9.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  10.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
  11.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  12.         GPIO_Init(GPIOA,&GPIO_InitStructure);
  13.        
  14.         while(1)
  15.         {
  16.                 GPIO_Write(GPIOA, ~0x0001); //0000 0000 0000 0001
  17.                 Delay_ms(100);
  18.                 GPIO_Write(GPIOA, ~0x0002); //0000 0000 0000 0010
  19.                 Delay_ms(100);
  20.                 GPIO_Write(GPIOA, ~0x0004); //0000 0000 0000 0100
  21.                 Delay_ms(100);
  22.                 GPIO_Write(GPIOA, ~0x0008); //0000 0000 0000 1000
  23.                 Delay_ms(100);
  24.                 GPIO_Write(GPIOA, ~0x0010); //0000 0000 0001 0000
  25.                 Delay_ms(100);
  26.                 GPIO_Write(GPIOA, ~0x0020); //0000 0000 0010 0000
  27.                 Delay_ms(100);
  28.                 GPIO_Write(GPIOA, ~0x0040); //0000 0000 0100 0000
  29.                 Delay_ms(100);
  30.                 GPIO_Write(GPIOA, ~0x0080); //0000 0000 1000 0000
  31.                 Delay_ms(100);
  32.         }
  33. }
复制代码
2.3  蜂鸣器


  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. int main(void)
  5. {
  6.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
  7.        
  8.         GPIO_InitTypeDef GPIO_InitStructure;
  9.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  10.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
  11.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  12.         GPIO_Init(GPIOB,&GPIO_InitStructure);
  13.        
  14.         while(1)
  15.         {
  16.                 GPIO_ResetBits(GPIOB, GPIO_Pin_12);
  17.                 Delay_ms(100);
  18.                 GPIO_SetBits(GPIOB, GPIO_Pin_12);
  19.                 Delay_ms(100);       
  20.                 GPIO_ResetBits(GPIOB, GPIO_Pin_12);
  21.                 Delay_ms(100);
  22.                 GPIO_SetBits(GPIOB, GPIO_Pin_12);
  23.                 Delay_ms(700);
  24.         }
  25. }
复制代码
  GPIO输入 
  2.4 按键控制LED

 

利用到两个LED和两个按键,将这两部门模块化放入Hardware文件夹下。
实现:按键1和2分别控制LED1和2开关。 
引脚:LED1 -> PA1,LED2 -> PA2,按键1 -> PB1,按键2 -> PB11<。
  1. //Key.h
  2. #ifndef __KEY_H__
  3. #define __KEY_H__
  4. void Key_Init(void);
  5. uint8_t Key_GetNum(void);
  6. #endif
  7. //Key.c
  8. #include "stm32f10x.h"                  // Device header
  9. #include "Delay.H"
  10. void Key_Init(void)
  11. {
  12.        
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
  14.        
  15.         GPIO_InitTypeDef GPIO_InitStructure;
  16.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  17.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_11;
  18.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  19.         GPIO_Init(GPIOB,&GPIO_InitStructure);
  20. }
  21. /**
  22.   * 函    数:按键获取键码
  23.   * 参    数:无
  24.   * 返 回 值:按下按键的键码值,范围:0~2,返回0代表没有按键按下
  25.   * 注意事项:此函数是阻塞式操作,当按键按住不放时,函数会卡住,直到按键松手
  26.   */
  27. uint8_t Key_GetNum(void)
  28. {
  29.         uint8_t KeyNum = 0;
  30.         if(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_1) == 0)
  31.         {
  32.                 Delay_ms(20);
  33.                 while(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_1) == 0);
  34.                 Delay_ms(20);
  35.                 KeyNum = 1;
  36.         }
  37.         if(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_11) == 0)
  38.         {
  39.                 Delay_ms(20);
  40.                 while(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_11) == 0);
  41.                 Delay_ms(20);
  42.                 KeyNum = 2;
  43.         }
  44.         return KeyNum;
  45. }
复制代码
  1. //LED.h
  2. #ifndef __LED_H__
  3. #define __LED_H__
  4. void LED_Init(void);
  5. void LED1_ON(void);
  6. void LED1_OFF(void);
  7. void LED2_ON(void);
  8. void LED2_OFF(void);
  9. void LED1_Turn(void);
  10. void LED2_Turn(void);
  11. #endif
  12. //LED.c
  13. #include "stm32f10x.h"                  // Device header
  14. void LED_Init(void)
  15. {
  16.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  17.        
  18.         GPIO_InitTypeDef GPIO_InitStructure;
  19.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  20.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_2;
  21.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  22.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  23.        
  24.         GPIO_SetBits(GPIOA,GPIO_Pin_1 | GPIO_Pin_2);
  25. }
  26. void LED1_ON(void)
  27. {
  28.         GPIO_ResetBits(GPIOA,GPIO_Pin_1);
  29. }
  30. void LED1_OFF(void)
  31. {
  32.         GPIO_SetBits(GPIOA,GPIO_Pin_1);
  33. }
  34. void LED1_Turn(void)
  35. {
  36.         if(GPIO_ReadOutputDataBit(GPIOA,GPIO_Pin_1) == 0)        //获取输出寄存器的状态,如果当前引脚输出低电平
  37.         {
  38.                 GPIO_SetBits(GPIOA,GPIO_Pin_1);                                        //则设置PA1引脚为高电平
  39.         }
  40.         else                                                                                                //否则,即当前引脚输出高电平
  41.         {                                                                                               
  42.                 GPIO_ResetBits(GPIOA,GPIO_Pin_1);                                //则设置PA1引脚为低电平
  43.         }
  44. }
  45. void LED2_ON(void)
  46. {
  47.         GPIO_ResetBits(GPIOA,GPIO_Pin_2);
  48. }
  49. void LED2_OFF(void)
  50. {
  51.         GPIO_SetBits(GPIOA,GPIO_Pin_2);
  52. }
  53. void LED2_Turn(void)
  54. {
  55.         if(GPIO_ReadOutputDataBit(GPIOA,GPIO_Pin_2) == 0)
  56.         {
  57.                 GPIO_SetBits(GPIOA,GPIO_Pin_2);
  58.         }
  59.         else{
  60.                 GPIO_ResetBits(GPIOA,GPIO_Pin_2);
  61.         }
  62. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "LED.h"
  5. #include "Key.H"
  6. uint8_t KeyNum;
  7. int main(void)
  8. {
  9.         LED_Init();
  10.         Key_Init();
  11.        
  12.         while(1)
  13.         {
  14.                 KeyNum = Key_GetNum();
  15.                 if(KeyNum == 1)
  16.                 {
  17.                         LED1_Turn();
  18.                 }
  19.                 if(KeyNum == 2)
  20.                 {
  21.                         LED2_Turn();
  22.                 }
  23.         }
  24. }
复制代码
2.5 光敏传感器控制蜂鸣器 


利用到光敏传感器和蜂鸣器,将这两部门模块化放入Hardware文件夹下。
实现:遮住光敏传感器,蜂鸣器响。 
引脚:蜂鸣器PB12,光敏传感器PB13。
  1. //Buzzer.h
  2. #ifndef __BUZZER_H__
  3. #define __BUZZER_H__
  4. void Buzzer_Init(void);
  5. void Buzzer_ON(void);
  6. void Buzzer_OFF(void);
  7. void Buzzer_Turn(void);
  8. #endif
  9. //Buzzer.c
  10. #include "stm32f10x.h"                  // Device header
  11. void Buzzer_Init(void)
  12. {
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
  14.        
  15.         GPIO_InitTypeDef GPIO_InitStructure;
  16.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  17.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
  18.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  19.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  20.        
  21.         GPIO_SetBits(GPIOA,GPIO_Pin_12);
  22. }
  23. void Buzzer_ON(void)
  24. {
  25.         GPIO_ResetBits(GPIOB,GPIO_Pin_12);
  26. }
  27. void Buzzer_OFF(void)
  28. {
  29.         GPIO_SetBits(GPIOB,GPIO_Pin_12);
  30. }
  31. void Buzzer_Turn(void)
  32. {
  33.         if(GPIO_ReadOutputDataBit(GPIOA,GPIO_Pin_12) == 0)        //获取输出寄存器的状态,如果当前引脚输出低电平
  34.         {
  35.                 GPIO_SetBits(GPIOB,GPIO_Pin_12);                                        //则设置PA1引脚为高电平
  36.         }
  37.         else                                                                                                //否则,即当前引脚输出高电平
  38.         {                                                                                               
  39.                 GPIO_ResetBits(GPIOB,GPIO_Pin_12);                                //则设置PA1引脚为低电平
  40.         }
  41. }
复制代码
  1. //LightSensor.h
  2. #ifndef __LIGHT_SENSOR_H__
  3. #define __LIGHT_SENSOR_H__
  4. void LightSensor_Init(void);
  5. uint8_t LightSensor_Get(void);
  6. #endif
  7. //LightSensor.c
  8. #include "stm32f10x.h"                  // Device header
  9. void LightSensor_Init(void)
  10. {
  11.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
  12.        
  13.         GPIO_InitTypeDef GPIO_InitStructure;
  14.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  15.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
  16.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  17.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  18. }
  19. uint8_t LightSensor_Get(void)
  20. {
  21.         return GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_13);
  22. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "LED.h"
  5. #include "Key.H"
  6. #include "Buzzer.H"
  7. #include "LightSensor.H"
  8. int main(void)
  9. {
  10.         Buzzer_Init();
  11.         LightSensor_Init();
  12.         while(1)
  13.         {
  14.                 if(LightSensor_Get() == 1)
  15.                 {
  16.                         Buzzer_ON();
  17.                 }
  18.                 else
  19.                 {
  20.                         Buzzer_OFF();
  21.                 }
  22.         }
  23. }
复制代码
三、OLED 

3.1 OLED显示屏 

 

实现:OLED的基本显示。
引脚:SCL -> PB8,SDA -> PB9。(4针OLED)
  1. //OLED.h
  2. #ifndef __OLED_H
  3. #define __OLED_H
  4. void OLED_Init(void);
  5. void OLED_Clear(void);
  6. void OLED_ShowChar(uint8_t Line, uint8_t Column, char Char);
  7. void OLED_ShowString(uint8_t Line, uint8_t Column, char *String);
  8. void OLED_ShowNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
  9. void OLED_ShowSignedNum(uint8_t Line, uint8_t Column, int32_t Number, uint8_t Length);
  10. void OLED_ShowHexNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
  11. void OLED_ShowBinNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length);
  12. #endif
  13. //OLED.c
  14. #include "stm32f10x.h"
  15. #include "OLED_Font.h"
  16. /*引脚配置*/
  17. #define OLED_W_SCL(x)                GPIO_WriteBit(GPIOB, GPIO_Pin_8, (BitAction)(x))
  18. #define OLED_W_SDA(x)                GPIO_WriteBit(GPIOB, GPIO_Pin_9, (BitAction)(x))
  19. /*引脚初始化*/
  20. void OLED_I2C_Init(void)
  21. {
  22.     RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
  23.        
  24.         GPIO_InitTypeDef GPIO_InitStructure;
  25.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;
  26.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  27.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
  28.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  29.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  30.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  31.        
  32.         OLED_W_SCL(1);
  33.         OLED_W_SDA(1);
  34. }
  35. /**
  36.   * @brief  I2C开始
  37.   * @param  无
  38.   * @retval 无
  39.   */
  40. void OLED_I2C_Start(void)
  41. {
  42.         OLED_W_SDA(1);
  43.         OLED_W_SCL(1);
  44.         OLED_W_SDA(0);
  45.         OLED_W_SCL(0);
  46. }
  47. /**
  48.   * @brief  I2C停止
  49.   * @param  无
  50.   * @retval 无
  51.   */
  52. void OLED_I2C_Stop(void)
  53. {
  54.         OLED_W_SDA(0);
  55.         OLED_W_SCL(1);
  56.         OLED_W_SDA(1);
  57. }
  58. /**
  59.   * @brief  I2C发送一个字节
  60.   * @param  Byte 要发送的一个字节
  61.   * @retval 无
  62.   */
  63. void OLED_I2C_SendByte(uint8_t Byte)
  64. {
  65.         uint8_t i;
  66.         for (i = 0; i < 8; i++)
  67.         {
  68.                 OLED_W_SDA(!!(Byte & (0x80 >> i)));
  69.                 OLED_W_SCL(1);
  70.                 OLED_W_SCL(0);
  71.         }
  72.         OLED_W_SCL(1);        //额外的一个时钟,不处理应答信号
  73.         OLED_W_SCL(0);
  74. }
  75. /**
  76.   * @brief  OLED写命令
  77.   * @param  Command 要写入的命令
  78.   * @retval 无
  79.   */
  80. void OLED_WriteCommand(uint8_t Command)
  81. {
  82.         OLED_I2C_Start();
  83.         OLED_I2C_SendByte(0x78);                //从机地址
  84.         OLED_I2C_SendByte(0x00);                //写命令
  85.         OLED_I2C_SendByte(Command);
  86.         OLED_I2C_Stop();
  87. }
  88. /**
  89.   * @brief  OLED写数据
  90.   * @param  Data 要写入的数据
  91.   * @retval 无
  92.   */
  93. void OLED_WriteData(uint8_t Data)
  94. {
  95.         OLED_I2C_Start();
  96.         OLED_I2C_SendByte(0x78);                //从机地址
  97.         OLED_I2C_SendByte(0x40);                //写数据
  98.         OLED_I2C_SendByte(Data);
  99.         OLED_I2C_Stop();
  100. }
  101. /**
  102.   * @brief  OLED设置光标位置
  103.   * @param  Y 以左上角为原点,向下方向的坐标,范围:0~7
  104.   * @param  X 以左上角为原点,向右方向的坐标,范围:0~127
  105.   * @retval 无
  106.   */
  107. void OLED_SetCursor(uint8_t Y, uint8_t X)
  108. {
  109.         OLED_WriteCommand(0xB0 | Y);                                        //设置Y位置
  110.         OLED_WriteCommand(0x10 | ((X & 0xF0) >> 4));        //设置X位置高4位
  111.         OLED_WriteCommand(0x00 | (X & 0x0F));                        //设置X位置低4位
  112. }
  113. /**
  114.   * @brief  OLED清屏
  115.   * @param  无
  116.   * @retval 无
  117.   */
  118. void OLED_Clear(void)
  119. {  
  120.         uint8_t i, j;
  121.         for (j = 0; j < 8; j++)
  122.         {
  123.                 OLED_SetCursor(j, 0);
  124.                 for(i = 0; i < 128; i++)
  125.                 {
  126.                         OLED_WriteData(0x00);
  127.                 }
  128.         }
  129. }
  130. /**
  131.   * @brief  OLED显示一个字符
  132.   * @param  Line 行位置,范围:1~4
  133.   * @param  Column 列位置,范围:1~16
  134.   * @param  Char 要显示的一个字符,范围:ASCII可见字符
  135.   * @retval 无
  136.   */
  137. void OLED_ShowChar(uint8_t Line, uint8_t Column, char Char)
  138. {             
  139.         uint8_t i;
  140.         OLED_SetCursor((Line - 1) * 2, (Column - 1) * 8);                //设置光标位置在上半部分
  141.         for (i = 0; i < 8; i++)
  142.         {
  143.                 OLED_WriteData(OLED_F8x16[Char - ' '][i]);                        //显示上半部分内容
  144.         }
  145.         OLED_SetCursor((Line - 1) * 2 + 1, (Column - 1) * 8);        //设置光标位置在下半部分
  146.         for (i = 0; i < 8; i++)
  147.         {
  148.                 OLED_WriteData(OLED_F8x16[Char - ' '][i + 8]);                //显示下半部分内容
  149.         }
  150. }
  151. /**
  152.   * @brief  OLED显示字符串
  153.   * @param  Line 起始行位置,范围:1~4
  154.   * @param  Column 起始列位置,范围:1~16
  155.   * @param  String 要显示的字符串,范围:ASCII可见字符
  156.   * @retval 无
  157.   */
  158. void OLED_ShowString(uint8_t Line, uint8_t Column, char *String)
  159. {
  160.         uint8_t i;
  161.         for (i = 0; String[i] != '\0'; i++)
  162.         {
  163.                 OLED_ShowChar(Line, Column + i, String[i]);
  164.         }
  165. }
  166. /**
  167.   * @brief  OLED次方函数
  168.   * @retval 返回值等于X的Y次方
  169.   */
  170. uint32_t OLED_Pow(uint32_t X, uint32_t Y)
  171. {
  172.         uint32_t Result = 1;
  173.         while (Y--)
  174.         {
  175.                 Result *= X;
  176.         }
  177.         return Result;
  178. }
  179. /**
  180.   * @brief  OLED显示数字(十进制,正数)
  181.   * @param  Line 起始行位置,范围:1~4
  182.   * @param  Column 起始列位置,范围:1~16
  183.   * @param  Number 要显示的数字,范围:0~4294967295
  184.   * @param  Length 要显示数字的长度,范围:1~10
  185.   * @retval 无
  186.   */
  187. void OLED_ShowNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length)
  188. {
  189.         uint8_t i;
  190.         for (i = 0; i < Length; i++)                                                       
  191.         {
  192.                 OLED_ShowChar(Line, Column + i, Number / OLED_Pow(10, Length - i - 1) % 10 + '0');
  193.         }
  194. }
  195. /**
  196.   * @brief  OLED显示数字(十进制,带符号数)
  197.   * @param  Line 起始行位置,范围:1~4
  198.   * @param  Column 起始列位置,范围:1~16
  199.   * @param  Number 要显示的数字,范围:-2147483648~2147483647
  200.   * @param  Length 要显示数字的长度,范围:1~10
  201.   * @retval 无
  202.   */
  203. void OLED_ShowSignedNum(uint8_t Line, uint8_t Column, int32_t Number, uint8_t Length)
  204. {
  205.         uint8_t i;
  206.         uint32_t Number1;
  207.         if (Number >= 0)
  208.         {
  209.                 OLED_ShowChar(Line, Column, '+');
  210.                 Number1 = Number;
  211.         }
  212.         else
  213.         {
  214.                 OLED_ShowChar(Line, Column, '-');
  215.                 Number1 = -Number;
  216.         }
  217.         for (i = 0; i < Length; i++)                                                       
  218.         {
  219.                 OLED_ShowChar(Line, Column + i + 1, Number1 / OLED_Pow(10, Length - i - 1) % 10 + '0');
  220.         }
  221. }
  222. /**
  223.   * @brief  OLED显示数字(十六进制,正数)
  224.   * @param  Line 起始行位置,范围:1~4
  225.   * @param  Column 起始列位置,范围:1~16
  226.   * @param  Number 要显示的数字,范围:0~0xFFFFFFFF
  227.   * @param  Length 要显示数字的长度,范围:1~8
  228.   * @retval 无
  229.   */
  230. void OLED_ShowHexNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length)
  231. {
  232.         uint8_t i, SingleNumber;
  233.         for (i = 0; i < Length; i++)                                                       
  234.         {
  235.                 SingleNumber = Number / OLED_Pow(16, Length - i - 1) % 16;
  236.                 if (SingleNumber < 10)
  237.                 {
  238.                         OLED_ShowChar(Line, Column + i, SingleNumber + '0');
  239.                 }
  240.                 else
  241.                 {
  242.                         OLED_ShowChar(Line, Column + i, SingleNumber - 10 + 'A');
  243.                 }
  244.         }
  245. }
  246. /**
  247.   * @brief  OLED显示数字(二进制,正数)
  248.   * @param  Line 起始行位置,范围:1~4
  249.   * @param  Column 起始列位置,范围:1~16
  250.   * @param  Number 要显示的数字,范围:0~1111 1111 1111 1111
  251.   * @param  Length 要显示数字的长度,范围:1~16
  252.   * @retval 无
  253.   */
  254. void OLED_ShowBinNum(uint8_t Line, uint8_t Column, uint32_t Number, uint8_t Length)
  255. {
  256.         uint8_t i;
  257.         for (i = 0; i < Length; i++)                                                       
  258.         {
  259.                 OLED_ShowChar(Line, Column + i, Number / OLED_Pow(2, Length - i - 1) % 2 + '0');
  260.         }
  261. }
  262. /**
  263.   * @brief  OLED初始化
  264.   * @param  无
  265.   * @retval 无
  266.   */
  267. void OLED_Init(void)
  268. {
  269.         uint32_t i, j;
  270.        
  271.         for (i = 0; i < 1000; i++)                        //上电延时
  272.         {
  273.                 for (j = 0; j < 1000; j++);
  274.         }
  275.        
  276.         OLED_I2C_Init();                        //端口初始化
  277.        
  278.         OLED_WriteCommand(0xAE);        //关闭显示
  279.        
  280.         OLED_WriteCommand(0xD5);        //设置显示时钟分频比/振荡器频率
  281.         OLED_WriteCommand(0x80);
  282.        
  283.         OLED_WriteCommand(0xA8);        //设置多路复用率
  284.         OLED_WriteCommand(0x3F);
  285.        
  286.         OLED_WriteCommand(0xD3);        //设置显示偏移
  287.         OLED_WriteCommand(0x00);
  288.        
  289.         OLED_WriteCommand(0x40);        //设置显示开始行
  290.        
  291.         OLED_WriteCommand(0xA1);        //设置左右方向,0xA1正常 0xA0左右反置
  292.        
  293.         OLED_WriteCommand(0xC8);        //设置上下方向,0xC8正常 0xC0上下反置
  294.         OLED_WriteCommand(0xDA);        //设置COM引脚硬件配置
  295.         OLED_WriteCommand(0x12);
  296.        
  297.         OLED_WriteCommand(0x81);        //设置对比度控制
  298.         OLED_WriteCommand(0xCF);
  299.         OLED_WriteCommand(0xD9);        //设置预充电周期
  300.         OLED_WriteCommand(0xF1);
  301.         OLED_WriteCommand(0xDB);        //设置VCOMH取消选择级别
  302.         OLED_WriteCommand(0x30);
  303.         OLED_WriteCommand(0xA4);        //设置整个显示打开/关闭
  304.         OLED_WriteCommand(0xA6);        //设置正常/倒转显示
  305.         OLED_WriteCommand(0x8D);        //设置充电泵
  306.         OLED_WriteCommand(0x14);
  307.         OLED_WriteCommand(0xAF);        //开启显示
  308.                
  309.         OLED_Clear();                                //OLED清屏
  310. }
复制代码
字库:
  1. //OLED_Font.h
  2. #ifndef __OLED_FONT_H
  3. #define __OLED_FONT_H
  4. /*OLED字模库,宽8像素,高16像素*/
  5. const uint8_t OLED_F8x16[][16]=
  6. {
  7.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  8.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//  0
  9.        
  10.         0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0x00,
  11.         0x00,0x00,0x00,0x33,0x30,0x00,0x00,0x00,//! 1
  12.        
  13.         0x00,0x10,0x0C,0x06,0x10,0x0C,0x06,0x00,
  14.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//" 2
  15.        
  16.         0x40,0xC0,0x78,0x40,0xC0,0x78,0x40,0x00,
  17.         0x04,0x3F,0x04,0x04,0x3F,0x04,0x04,0x00,//# 3
  18.        
  19.         0x00,0x70,0x88,0xFC,0x08,0x30,0x00,0x00,
  20.         0x00,0x18,0x20,0xFF,0x21,0x1E,0x00,0x00,//$ 4
  21.        
  22.         0xF0,0x08,0xF0,0x00,0xE0,0x18,0x00,0x00,
  23.         0x00,0x21,0x1C,0x03,0x1E,0x21,0x1E,0x00,//% 5
  24.        
  25.         0x00,0xF0,0x08,0x88,0x70,0x00,0x00,0x00,
  26.         0x1E,0x21,0x23,0x24,0x19,0x27,0x21,0x10,//& 6
  27.        
  28.         0x10,0x16,0x0E,0x00,0x00,0x00,0x00,0x00,
  29.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//' 7
  30.        
  31.         0x00,0x00,0x00,0xE0,0x18,0x04,0x02,0x00,
  32.         0x00,0x00,0x00,0x07,0x18,0x20,0x40,0x00,//( 8
  33.        
  34.         0x00,0x02,0x04,0x18,0xE0,0x00,0x00,0x00,
  35.         0x00,0x40,0x20,0x18,0x07,0x00,0x00,0x00,//) 9
  36.        
  37.         0x40,0x40,0x80,0xF0,0x80,0x40,0x40,0x00,
  38.         0x02,0x02,0x01,0x0F,0x01,0x02,0x02,0x00,//* 10
  39.        
  40.         0x00,0x00,0x00,0xF0,0x00,0x00,0x00,0x00,
  41.         0x01,0x01,0x01,0x1F,0x01,0x01,0x01,0x00,//+ 11
  42.        
  43.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  44.         0x80,0xB0,0x70,0x00,0x00,0x00,0x00,0x00,//, 12
  45.        
  46.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  47.         0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,//- 13
  48.        
  49.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  50.         0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,//. 14
  51.        
  52.         0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x04,
  53.         0x00,0x60,0x18,0x06,0x01,0x00,0x00,0x00,/// 15
  54.        
  55.         0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,
  56.         0x00,0x0F,0x10,0x20,0x20,0x10,0x0F,0x00,//0 16
  57.        
  58.         0x00,0x10,0x10,0xF8,0x00,0x00,0x00,0x00,
  59.         0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//1 17
  60.        
  61.         0x00,0x70,0x08,0x08,0x08,0x88,0x70,0x00,
  62.         0x00,0x30,0x28,0x24,0x22,0x21,0x30,0x00,//2 18
  63.        
  64.         0x00,0x30,0x08,0x88,0x88,0x48,0x30,0x00,
  65.         0x00,0x18,0x20,0x20,0x20,0x11,0x0E,0x00,//3 19
  66.        
  67.         0x00,0x00,0xC0,0x20,0x10,0xF8,0x00,0x00,
  68.         0x00,0x07,0x04,0x24,0x24,0x3F,0x24,0x00,//4 20
  69.        
  70.         0x00,0xF8,0x08,0x88,0x88,0x08,0x08,0x00,
  71.         0x00,0x19,0x21,0x20,0x20,0x11,0x0E,0x00,//5 21
  72.        
  73.         0x00,0xE0,0x10,0x88,0x88,0x18,0x00,0x00,
  74.         0x00,0x0F,0x11,0x20,0x20,0x11,0x0E,0x00,//6 22
  75.        
  76.         0x00,0x38,0x08,0x08,0xC8,0x38,0x08,0x00,
  77.         0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x00,//7 23
  78.        
  79.         0x00,0x70,0x88,0x08,0x08,0x88,0x70,0x00,
  80.         0x00,0x1C,0x22,0x21,0x21,0x22,0x1C,0x00,//8 24
  81.        
  82.         0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,
  83.         0x00,0x00,0x31,0x22,0x22,0x11,0x0F,0x00,//9 25
  84.        
  85.         0x00,0x00,0x00,0xC0,0xC0,0x00,0x00,0x00,
  86.         0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,//: 26
  87.        
  88.         0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,
  89.         0x00,0x00,0x80,0x60,0x00,0x00,0x00,0x00,//; 27
  90.        
  91.         0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x00,
  92.         0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x00,//< 28
  93.        
  94.         0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,
  95.         0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,//= 29
  96.        
  97.         0x00,0x08,0x10,0x20,0x40,0x80,0x00,0x00,
  98.         0x00,0x20,0x10,0x08,0x04,0x02,0x01,0x00,//> 30
  99.        
  100.         0x00,0x70,0x48,0x08,0x08,0x08,0xF0,0x00,
  101.         0x00,0x00,0x00,0x30,0x36,0x01,0x00,0x00,//? 31
  102.        
  103.         0xC0,0x30,0xC8,0x28,0xE8,0x10,0xE0,0x00,
  104.         0x07,0x18,0x27,0x24,0x23,0x14,0x0B,0x00,//@ 32
  105.        
  106.         0x00,0x00,0xC0,0x38,0xE0,0x00,0x00,0x00,
  107.         0x20,0x3C,0x23,0x02,0x02,0x27,0x38,0x20,//A 33
  108.        
  109.         0x08,0xF8,0x88,0x88,0x88,0x70,0x00,0x00,
  110.         0x20,0x3F,0x20,0x20,0x20,0x11,0x0E,0x00,//B 34
  111.        
  112.         0xC0,0x30,0x08,0x08,0x08,0x08,0x38,0x00,
  113.         0x07,0x18,0x20,0x20,0x20,0x10,0x08,0x00,//C 35
  114.        
  115.         0x08,0xF8,0x08,0x08,0x08,0x10,0xE0,0x00,
  116.         0x20,0x3F,0x20,0x20,0x20,0x10,0x0F,0x00,//D 36
  117.        
  118.         0x08,0xF8,0x88,0x88,0xE8,0x08,0x10,0x00,
  119.         0x20,0x3F,0x20,0x20,0x23,0x20,0x18,0x00,//E 37
  120.        
  121.         0x08,0xF8,0x88,0x88,0xE8,0x08,0x10,0x00,
  122.         0x20,0x3F,0x20,0x00,0x03,0x00,0x00,0x00,//F 38
  123.        
  124.         0xC0,0x30,0x08,0x08,0x08,0x38,0x00,0x00,
  125.         0x07,0x18,0x20,0x20,0x22,0x1E,0x02,0x00,//G 39
  126.        
  127.         0x08,0xF8,0x08,0x00,0x00,0x08,0xF8,0x08,
  128.         0x20,0x3F,0x21,0x01,0x01,0x21,0x3F,0x20,//H 40
  129.        
  130.         0x00,0x08,0x08,0xF8,0x08,0x08,0x00,0x00,
  131.         0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//I 41
  132.        
  133.         0x00,0x00,0x08,0x08,0xF8,0x08,0x08,0x00,
  134.         0xC0,0x80,0x80,0x80,0x7F,0x00,0x00,0x00,//J 42
  135.        
  136.         0x08,0xF8,0x88,0xC0,0x28,0x18,0x08,0x00,
  137.         0x20,0x3F,0x20,0x01,0x26,0x38,0x20,0x00,//K 43
  138.        
  139.         0x08,0xF8,0x08,0x00,0x00,0x00,0x00,0x00,
  140.         0x20,0x3F,0x20,0x20,0x20,0x20,0x30,0x00,//L 44
  141.        
  142.         0x08,0xF8,0xF8,0x00,0xF8,0xF8,0x08,0x00,
  143.         0x20,0x3F,0x00,0x3F,0x00,0x3F,0x20,0x00,//M 45
  144.        
  145.         0x08,0xF8,0x30,0xC0,0x00,0x08,0xF8,0x08,
  146.         0x20,0x3F,0x20,0x00,0x07,0x18,0x3F,0x00,//N 46
  147.        
  148.         0xE0,0x10,0x08,0x08,0x08,0x10,0xE0,0x00,
  149.         0x0F,0x10,0x20,0x20,0x20,0x10,0x0F,0x00,//O 47
  150.        
  151.         0x08,0xF8,0x08,0x08,0x08,0x08,0xF0,0x00,
  152.         0x20,0x3F,0x21,0x01,0x01,0x01,0x00,0x00,//P 48
  153.        
  154.         0xE0,0x10,0x08,0x08,0x08,0x10,0xE0,0x00,
  155.         0x0F,0x18,0x24,0x24,0x38,0x50,0x4F,0x00,//Q 49
  156.        
  157.         0x08,0xF8,0x88,0x88,0x88,0x88,0x70,0x00,
  158.         0x20,0x3F,0x20,0x00,0x03,0x0C,0x30,0x20,//R 50
  159.        
  160.         0x00,0x70,0x88,0x08,0x08,0x08,0x38,0x00,
  161.         0x00,0x38,0x20,0x21,0x21,0x22,0x1C,0x00,//S 51
  162.        
  163.         0x18,0x08,0x08,0xF8,0x08,0x08,0x18,0x00,
  164.         0x00,0x00,0x20,0x3F,0x20,0x00,0x00,0x00,//T 52
  165.        
  166.         0x08,0xF8,0x08,0x00,0x00,0x08,0xF8,0x08,
  167.         0x00,0x1F,0x20,0x20,0x20,0x20,0x1F,0x00,//U 53
  168.        
  169.         0x08,0x78,0x88,0x00,0x00,0xC8,0x38,0x08,
  170.         0x00,0x00,0x07,0x38,0x0E,0x01,0x00,0x00,//V 54
  171.        
  172.         0xF8,0x08,0x00,0xF8,0x00,0x08,0xF8,0x00,
  173.         0x03,0x3C,0x07,0x00,0x07,0x3C,0x03,0x00,//W 55
  174.        
  175.         0x08,0x18,0x68,0x80,0x80,0x68,0x18,0x08,
  176.         0x20,0x30,0x2C,0x03,0x03,0x2C,0x30,0x20,//X 56
  177.        
  178.         0x08,0x38,0xC8,0x00,0xC8,0x38,0x08,0x00,
  179.         0x00,0x00,0x20,0x3F,0x20,0x00,0x00,0x00,//Y 57
  180.        
  181.         0x10,0x08,0x08,0x08,0xC8,0x38,0x08,0x00,
  182.         0x20,0x38,0x26,0x21,0x20,0x20,0x18,0x00,//Z 58
  183.        
  184.         0x00,0x00,0x00,0xFE,0x02,0x02,0x02,0x00,
  185.         0x00,0x00,0x00,0x7F,0x40,0x40,0x40,0x00,//[ 59
  186.        
  187.         0x00,0x0C,0x30,0xC0,0x00,0x00,0x00,0x00,
  188.         0x00,0x00,0x00,0x01,0x06,0x38,0xC0,0x00,//\ 60
  189.        
  190.         0x00,0x02,0x02,0x02,0xFE,0x00,0x00,0x00,
  191.         0x00,0x40,0x40,0x40,0x7F,0x00,0x00,0x00,//] 61
  192.        
  193.         0x00,0x00,0x04,0x02,0x02,0x02,0x04,0x00,
  194.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//^ 62
  195.        
  196.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  197.         0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,//_ 63
  198.        
  199.         0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,
  200.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//` 64
  201.        
  202.         0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,
  203.         0x00,0x19,0x24,0x22,0x22,0x22,0x3F,0x20,//a 65
  204.        
  205.         0x08,0xF8,0x00,0x80,0x80,0x00,0x00,0x00,
  206.         0x00,0x3F,0x11,0x20,0x20,0x11,0x0E,0x00,//b 66
  207.        
  208.         0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,
  209.         0x00,0x0E,0x11,0x20,0x20,0x20,0x11,0x00,//c 67
  210.        
  211.         0x00,0x00,0x00,0x80,0x80,0x88,0xF8,0x00,
  212.         0x00,0x0E,0x11,0x20,0x20,0x10,0x3F,0x20,//d 68
  213.        
  214.         0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,
  215.         0x00,0x1F,0x22,0x22,0x22,0x22,0x13,0x00,//e 69
  216.        
  217.         0x00,0x80,0x80,0xF0,0x88,0x88,0x88,0x18,
  218.         0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//f 70
  219.        
  220.         0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,
  221.         0x00,0x6B,0x94,0x94,0x94,0x93,0x60,0x00,//g 71
  222.        
  223.         0x08,0xF8,0x00,0x80,0x80,0x80,0x00,0x00,
  224.         0x20,0x3F,0x21,0x00,0x00,0x20,0x3F,0x20,//h 72
  225.        
  226.         0x00,0x80,0x98,0x98,0x00,0x00,0x00,0x00,
  227.         0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//i 73
  228.        
  229.         0x00,0x00,0x00,0x80,0x98,0x98,0x00,0x00,
  230.         0x00,0xC0,0x80,0x80,0x80,0x7F,0x00,0x00,//j 74
  231.        
  232.         0x08,0xF8,0x00,0x00,0x80,0x80,0x80,0x00,
  233.         0x20,0x3F,0x24,0x02,0x2D,0x30,0x20,0x00,//k 75
  234.        
  235.         0x00,0x08,0x08,0xF8,0x00,0x00,0x00,0x00,
  236.         0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//l 76
  237.        
  238.         0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,
  239.         0x20,0x3F,0x20,0x00,0x3F,0x20,0x00,0x3F,//m 77
  240.        
  241.         0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,
  242.         0x20,0x3F,0x21,0x00,0x00,0x20,0x3F,0x20,//n 78
  243.        
  244.         0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,
  245.         0x00,0x1F,0x20,0x20,0x20,0x20,0x1F,0x00,//o 79
  246.        
  247.         0x80,0x80,0x00,0x80,0x80,0x00,0x00,0x00,
  248.         0x80,0xFF,0xA1,0x20,0x20,0x11,0x0E,0x00,//p 80
  249.        
  250.         0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,
  251.         0x00,0x0E,0x11,0x20,0x20,0xA0,0xFF,0x80,//q 81
  252.        
  253.         0x80,0x80,0x80,0x00,0x80,0x80,0x80,0x00,
  254.         0x20,0x20,0x3F,0x21,0x20,0x00,0x01,0x00,//r 82
  255.        
  256.         0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,
  257.         0x00,0x33,0x24,0x24,0x24,0x24,0x19,0x00,//s 83
  258.        
  259.         0x00,0x80,0x80,0xE0,0x80,0x80,0x00,0x00,
  260.         0x00,0x00,0x00,0x1F,0x20,0x20,0x00,0x00,//t 84
  261.        
  262.         0x80,0x80,0x00,0x00,0x00,0x80,0x80,0x00,
  263.         0x00,0x1F,0x20,0x20,0x20,0x10,0x3F,0x20,//u 85
  264.        
  265.         0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,
  266.         0x00,0x01,0x0E,0x30,0x08,0x06,0x01,0x00,//v 86
  267.        
  268.         0x80,0x80,0x00,0x80,0x00,0x80,0x80,0x80,
  269.         0x0F,0x30,0x0C,0x03,0x0C,0x30,0x0F,0x00,//w 87
  270.        
  271.         0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x00,
  272.         0x00,0x20,0x31,0x2E,0x0E,0x31,0x20,0x00,//x 88
  273.        
  274.         0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,
  275.         0x80,0x81,0x8E,0x70,0x18,0x06,0x01,0x00,//y 89
  276.        
  277.         0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x00,
  278.         0x00,0x21,0x30,0x2C,0x22,0x21,0x30,0x00,//z 90
  279.        
  280.         0x00,0x00,0x00,0x00,0x80,0x7C,0x02,0x02,
  281.         0x00,0x00,0x00,0x00,0x00,0x3F,0x40,0x40,//{ 91
  282.        
  283.         0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,
  284.         0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,//| 92
  285.        
  286.         0x00,0x02,0x02,0x7C,0x80,0x00,0x00,0x00,
  287.         0x00,0x40,0x40,0x3F,0x00,0x00,0x00,0x00,//} 93
  288.        
  289.         0x00,0x06,0x01,0x01,0x02,0x02,0x04,0x04,
  290.         0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//~ 94
  291. };
  292. #endif
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. int main(void)
  6. {
  7.         OLED_Init();
  8.         OLED_ShowChar(1,1,'A');
  9.         OLED_ShowString(1,3,"Hello!");
  10.         OLED_ShowNum(2,1,12345,5);
  11.         OLED_ShowSignedNum(2,7,-66,2);
  12.         OLED_ShowHexNum(3,1,0xAA55,4);
  13.         OLED_ShowBinNum(4,1,0xAA55,16);
  14.        
  15.         while(1)
  16.         {
  17.                
  18.         }
  19. }
复制代码
四、EXIT外部停止

4.1 对射式红外传感器计次


实现:利用对射式红外传感器进行计次 。下降沿触发,每当遮挡物离开红外,则计次1。
关键文件:模块化CounterSensor、main.c
引脚:DO -> PB14。
  1. //CounterSensor.h
  2. #ifndef __CountSensor_H__
  3. #define __CountSensor_H__
  4. void CountSensor_Init(void);
  5. uint16_t CountSensor_Get(void);
  6. #endif
  7. //CounterSensor.c
  8. #include "stm32f10x.h"                  // Device header
  9. uint16_t CountSensor_Count;
  10. void CountSensor_Init(void)
  11. {
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
  14.        
  15.         GPIO_InitTypeDef GPIO_InitStructure;
  16.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  17.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_14;
  18.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  19.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  20.        
  21.         GPIO_EXTILineConfig(GPIO_PortSourceGPIOB,GPIO_PinSource14);//数据选择器
  22.        
  23.         EXTI_InitTypeDef EXTI_InitStructure;
  24.         EXTI_InitStructure.EXTI_Line = EXTI_Line14;
  25.         EXTI_InitStructure.EXTI_LineCmd = ENABLE;
  26.         EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
  27.         EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
  28.         EXTI_Init(&EXTI_InitStructure);
  29.        
  30.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  31.        
  32.         NVIC_InitTypeDef NVIC_InitStructure;
  33.         NVIC_InitStructure.NVIC_IRQChannel = EXTI15_10_IRQn;
  34.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  35.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  36.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  37.         NVIC_Init(&NVIC_InitStructure);
  38. }
  39. uint16_t CountSensor_Get(void)
  40. {
  41.         return CountSensor_Count;
  42. }
  43. void EXTI15_10_IRQHandler(void)
  44. {
  45.         if(EXTI_GetITStatus(EXTI_Line14) == SET)
  46.         {
  47.                 CountSensor_Count ++;
  48.                 EXTI_ClearITPendingBit(EXTI_Line14);
  49.         }
  50. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "CountSensor.H"
  6. int main(void)
  7. {
  8.         OLED_Init();
  9.         CountSensor_Init();
  10.         OLED_ShowString(1,1,"Count:");
  11.        
  12.         while(1)
  13.         {
  14.                 OLED_ShowNum(1,7,CountSensor_Get(),5);
  15.         }
  16. }
复制代码
4.2  旋转编码器计次

 

实现:利用旋转编码器进行计次 。向左旋转数值递减,向右旋转递增。
关键文件:模块化Encoder、main.c
引脚:A -> PB0,B -> PB1。
  1. //Encoder.h
  2. #ifndef __ENCODER_H__
  3. #define __ENCODER_H__
  4. void Encoder_Init(void);
  5. int16_t Encode_Get(void);
  6. #endif
  7. //Encoder.c
  8. #include "stm32f10x.h"                  // Device header
  9. int16_t Encoder_Count;
  10. void Encoder_Init(void)
  11. {
  12. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
  14.        
  15.         GPIO_InitTypeDef GPIO_InitStructure;
  16.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  17.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1;
  18.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  19.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  20.        
  21.         GPIO_EXTILineConfig(GPIO_PortSourceGPIOB,GPIO_PinSource0);//数据选择器
  22.         GPIO_EXTILineConfig(GPIO_PortSourceGPIOB,GPIO_PinSource1);
  23.        
  24.         EXTI_InitTypeDef EXTI_InitStructure;
  25.         EXTI_InitStructure.EXTI_Line = EXTI_Line0 | EXTI_Line1;
  26.         EXTI_InitStructure.EXTI_LineCmd = ENABLE;
  27.         EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
  28.         EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
  29.         EXTI_Init(&EXTI_InitStructure);
  30.        
  31.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  32.        
  33.         NVIC_InitTypeDef NVIC_InitStructure;
  34.         NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQn;
  35.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  36.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  37.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  38.         NVIC_Init(&NVIC_InitStructure);
  39.        
  40.         NVIC_InitStructure.NVIC_IRQChannel = EXTI1_IRQn;
  41.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  42.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  43.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 2;
  44.         NVIC_Init(&NVIC_InitStructure);
  45. }
  46. int16_t Encode_Get(void)
  47. {
  48.         int16_t Temp;
  49.         Temp = Encoder_Count;
  50.         Encoder_Count = 0;
  51.         return Temp;
  52. }
  53. void EXTI0_IRQHandler(void)
  54. {
  55.         if(EXTI_GetITStatus(EXTI_Line0) == SET)
  56.         {
  57.                 if(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_1) == 0)
  58.                 {
  59.                         Encoder_Count--;
  60.                 }
  61.                 EXTI_ClearITPendingBit(EXTI_Line0);
  62.         }
  63. }
  64. void EXTI1_IRQHandler(void)
  65. {
  66.         if(EXTI_GetITStatus(EXTI_Line1) == SET)
  67.         {
  68.                 if(GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_0) == 0)
  69.                 {
  70.                         Encoder_Count++;
  71.                 }
  72.                 EXTI_ClearITPendingBit(EXTI_Line1);
  73.         }
  74. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Encoder.h"
  6. int16_t Num;
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         Encoder_Init();
  11.         OLED_ShowString(1,1,"Num:");
  12.        
  13.         while(1)
  14.         {
  15.                 Num+= Encode_Get();
  16.                 OLED_ShowSignedNum(1,5,Num,5);
  17.         }
  18. }
复制代码
 五、TIM定时器

5.1 定时器定时停止


在System文件夹进行Timer模块化。
实现:定时器计时,在OLED上显示,每一秒数字增一。
  1. //Timer.h
  2. #ifndef __TIMER_H__
  3. #define __TIMER_H__
  4. void Timer_Init(void);
  5. #endif
  6. //Timer.c
  7. #include "stm32f10x.h"                  // Device header
  8. void Timer_Init(void)
  9. {
  10.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
  11.        
  12.         TIM_InternalClockConfig(TIM2);
  13.        
  14.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  15.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  16.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  17.         TIM_TimeBaseInitStructure.TIM_Period = 10000-1;
  18.         TIM_TimeBaseInitStructure.TIM_Prescaler = 7200-1;
  19.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  20.         TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStructure);
  21.        
  22.         TIM_ClearFlag(TIM2,TIM_FLAG_Update);
  23.         TIM_ITConfig(TIM2,TIM_IT_Update,ENABLE);
  24.        
  25.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  26.        
  27.         NVIC_InitTypeDef NVIC_InitStructure;
  28.         NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn;
  29.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  30.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 2;
  31.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  32.         NVIC_Init(&NVIC_InitStructure);
  33.        
  34.         TIM_Cmd(TIM2,ENABLE);
  35. }
  36. /*
  37. void TIM2_IRQHandler(void)
  38. {
  39.         if(TIM_GetITStatus(TIM2,TIM_IT_Update) == SET)
  40.         {
  41.                 TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
  42.         }
  43. }
  44. */
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Timer.h"
  6. uint16_t Num;
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         Timer_Init();
  11.         OLED_ShowString(1,1,"Num:");
  12.        
  13.         while(1)
  14.         {
  15.                 OLED_ShowNum(1,5,Num,5);
  16.         }
  17. }
  18. void TIM2_IRQHandler(void)
  19. {
  20.         if(TIM_GetITStatus(TIM2,TIM_IT_Update) == SET)
  21.         {
  22.                 Num++;
  23.                 TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
  24.         }
  25. }
复制代码
5.2 定时器外部时钟

 

实现:外接红外对射式传感器,PA0引脚就是TIM2的ETR引脚,在这个引脚输入一个外部时钟。挡光片每遮挡一次红外对射式传感器,CNT加1,加到9,CNT自动清零,同时申请停止,NUM++。CNT和NUM的值在OLED上显示。
引脚:红外对射式传感器DO -> PA0。OLED接法同上。
  1. //Timer.h
  2. #ifndef __TIMER_H__
  3. #define __TIMER_H__
  4. void Timer_Init(void);
  5. uint16_t Timer_GetCounter(void);
  6. #endif
  7. //Timer.c
  8. #include "stm32f10x.h"                  // Device header
  9. void Timer_Init(void)
  10. {
  11.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  13.        
  14.         GPIO_InitTypeDef GPIO_InitStructure;
  15.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  16.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
  17.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  18.         GPIO_Init(GPIOA,&GPIO_InitStructure);
  19.        
  20.         TIM_ETRClockMode2Config(TIM2,TIM_ExtTRGPSC_OFF,TIM_ExtTRGPolarity_NonInverted,0x00);
  21.        
  22.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  23.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  24.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  25.         TIM_TimeBaseInitStructure.TIM_Period = 10-1;
  26.         TIM_TimeBaseInitStructure.TIM_Prescaler = 1-1;
  27.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  28.         TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStructure);
  29.        
  30.         TIM_ClearFlag(TIM2,TIM_FLAG_Update);
  31.         TIM_ITConfig(TIM2,TIM_IT_Update,ENABLE);
  32.        
  33.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  34.        
  35.         NVIC_InitTypeDef NVIC_InitStructure;
  36.         NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn;
  37.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  38.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 2;
  39.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  40.         NVIC_Init(&NVIC_InitStructure);
  41.        
  42.         TIM_Cmd(TIM2,ENABLE);
  43. }
  44. uint16_t Timer_GetCounter(void)
  45. {
  46.         return TIM_GetCounter(TIM2);
  47. }
  48. /*
  49. void TIM2_IRQHandler(void)
  50. {
  51.         if(TIM_GetITStatus(TIM2,TIM_IT_Update) == SET)
  52.         {
  53.                 TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
  54.         }
  55. }
  56. */
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Timer.h"
  6. uint16_t Num;
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         Timer_Init();
  11.         OLED_ShowString(1,1,"Num:");
  12.         OLED_ShowString(2,1,"CNT:");
  13.        
  14.         while(1)
  15.         {
  16.                 OLED_ShowNum(1,5,Num,5);
  17.                 OLED_ShowNum(2,5,Timer_GetCounter(),5);
  18.         }
  19. }
  20. void TIM2_IRQHandler(void)
  21. {
  22.         if(TIM_GetITStatus(TIM2,TIM_IT_Update) == SET)
  23.         {
  24.                 Num++;
  25.                 TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
  26.         }
  27. }
复制代码

5.3 PWM驱动LED呼吸灯

 

这里模块化PWM。
实现:LED呼吸灯效果。
引脚:LED接到PA0。
  1. //PWM.h
  2. #ifndef __PWM_H__
  3. #define __PWM_H__
  4. void PWM_Init(void);
  5. void PWM_SetCompare1(uint16_t Compare);
  6. #endif
  7. //PWM.c
  8. #include "stm32f10x.h"                  // Device header
  9. void PWM_Init(void)
  10. {
  11.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  13. //重映射,将PA0转移到PA15
  14. //        RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
  15. //        GPIO_PinRemapConfig(GPIO_PartialRemap1_TIM2,ENABLE);
  16. //        GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable,ENABLE);
  17.        
  18.         GPIO_InitTypeDef GPIO_InitStructure;
  19.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  20.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;        //GPIO_Pin_15
  21.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  22.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  23.        
  24.         TIM_InternalClockConfig(TIM2);
  25.        
  26.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  27.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  28.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  29.         TIM_TimeBaseInitStructure.TIM_Period = 100-1;                //ARR
  30.         TIM_TimeBaseInitStructure.TIM_Prescaler = 720-1;        //PSC
  31.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  32.         TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStructure);
  33.        
  34.         TIM_OCInitTypeDef TIM_OCInitStructure;
  35.         TIM_OCStructInit(&TIM_OCInitStructure);
  36.         TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
  37.         TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
  38.         TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
  39.         TIM_OCInitStructure.TIM_Pulse = 50;                //CCR
  40.         TIM_OC1Init(TIM2, &TIM_OCInitStructure);
  41.        
  42.         TIM_Cmd(TIM2,ENABLE);
  43. }
  44. //设置CCR寄存器的值
  45. void PWM_SetCompare1(uint16_t Compare)
  46. {
  47.         TIM_SetCompare1(TIM2, Compare);
  48. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "PWM.h"
  6. uint8_t i;
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         PWM_Init();
  11.        
  12.         while(1)
  13.         {
  14.                 for(i=0;i<=100;i++)
  15.                 {
  16.                         PWM_SetCompare1(i);
  17.                         Delay_ms(10);
  18.                 }
  19.                 for(i=0;i<=100;i++)
  20.                 {
  21.                         PWM_SetCompare1(100 - i);
  22.                         Delay_ms(10);
  23.                 }
  24.         }
  25. }
复制代码
5.4 PWM驱动舵机



增加PWM、Servo的模块化文件,放入Hardware文件夹内。
实现:通过按键,控制舵机旋转不同的角度(从0°-180°,按键每按一次旋转30°),并在OLED上显示当前角度。
引脚:舵机vcc -> STlink的5V,舵机信号引脚(橙色线)-> PA1。按键接在PB1。OLED的SCL->B8,SDA->B9。
  1. //PWM.h
  2. #ifndef __PWM_H__
  3. #define __PWM_H__
  4. void PWM_Init(void);
  5. void PWM_SetCompare2(uint16_t Compare);
  6. #endif
  7. //PWM.c
  8. #include "stm32f10x.h"                  // Device header
  9. void PWM_Init(void)
  10. {
  11.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  13.         GPIO_InitTypeDef GPIO_InitStructure;
  14.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  15.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
  16.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  17.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  18.        
  19.         TIM_InternalClockConfig(TIM2);
  20.        
  21.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  22.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  23.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  24.         TIM_TimeBaseInitStructure.TIM_Period = 20000-1;                //ARR
  25.         TIM_TimeBaseInitStructure.TIM_Prescaler = 72-1;        //PSC
  26.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  27.         TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStructure);
  28.        
  29.         TIM_OCInitTypeDef TIM_OCInitStructure;
  30.         TIM_OCStructInit(&TIM_OCInitStructure);
  31.         TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
  32.         TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
  33.         TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
  34.         TIM_OCInitStructure.TIM_Pulse = 0;                //CCR
  35.         TIM_OC2Init(TIM2, &TIM_OCInitStructure);
  36.        
  37.         TIM_Cmd(TIM2,ENABLE);
  38. }
  39. //设置CCR寄存器的值
  40. void PWM_SetCompare2(uint16_t Compare)
  41. {
  42.         TIM_SetCompare2(TIM2, Compare);
  43. }
复制代码
  1. //Servo.h
  2. #ifndef __SERVO_H__
  3. #define __SERVO_H__
  4. void Servo_Init(void);
  5. void Servo_SetAngle(float Angle);
  6. #endif
  7. //Servo.c
  8. #include "stm32f10x.h"                  // Device header
  9. #include "PWM.H"
  10. void Servo_Init(void)
  11. {
  12.         PWM_Init();
  13. }
  14. void Servo_SetAngle(float Angle)
  15. {
  16.         PWM_SetCompare2(Angle / 180 * 2000 + 500);
  17. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Servo.h"
  6. #include "Key.h"
  7. uint8_t KeyNum;
  8. float Angle;
  9. int main(void)
  10. {
  11.         OLED_Init();
  12.         Servo_Init();
  13.         Key_Init();
  14.        
  15.         OLED_ShowString(1,1,"Angle:");
  16.        
  17.         while(1)
  18.         {
  19.                 KeyNum = Key_GetNum();
  20.                 if(KeyNum == 1)
  21.                 {
  22.                         Angle += 30;
  23.                         if(Angle > 180)
  24.                         {
  25.                                 Angle = 0;
  26.                         }
  27.                 }
  28.                 Servo_SetAngle(Angle);
  29.                 OLED_ShowNum(1,7,Angle,3);
  30.         }
  31. }
复制代码
 5.5 PWM驱动直流电机


模块化Motor。 
实现:按键控制直流电机的转动速率与方向。正向从0转到100,然后反向从-100到0。OLED上显示速率的多少。
引脚:
TB6612电机驱动模块:VM -> STLink的5V引脚,VCC -> 电源正,GND -> 电源负,AO1和AO2分别接直流电机的两根线,PWMA -> PA2,AN2 -> PA5,AN1-> PA4,STBY -> 电源正。
按键:PB1。OLED接法同上。
  1. //PWM.h
  2. #ifndef __PWM_H__
  3. #define __PWM_H__
  4. void PWM_Init(void);
  5. void PWM_SetCompare3(uint16_t Compare);
  6. #endif
  7. //PWM.c
  8. #include "stm32f10x.h"                  // Device header
  9. void PWM_Init(void)
  10. {
  11.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  13.        
  14.         GPIO_InitTypeDef GPIO_InitStructure;
  15.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  16.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
  17.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  18.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  19.        
  20.         TIM_InternalClockConfig(TIM2);
  21.        
  22.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  23.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  24.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  25.         TIM_TimeBaseInitStructure.TIM_Period = 100-1;                //ARR
  26.         TIM_TimeBaseInitStructure.TIM_Prescaler = 36-1;        //PSC
  27.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  28.         TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStructure);
  29.        
  30.         TIM_OCInitTypeDef TIM_OCInitStructure;
  31.         TIM_OCStructInit(&TIM_OCInitStructure);
  32.         TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
  33.         TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
  34.         TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
  35.         TIM_OCInitStructure.TIM_Pulse = 50;                //CCR
  36.         TIM_OC3Init(TIM2, &TIM_OCInitStructure);
  37.        
  38.         TIM_Cmd(TIM2,ENABLE);
  39. }
  40. //设置CCR寄存器的值
  41. void PWM_SetCompare3(uint16_t Compare)
  42. {
  43.         TIM_SetCompare3(TIM2, Compare);
  44. }
复制代码
  1. //Motor.h
  2. #ifndef __MOTOR_H__
  3. #define __MOTOR_H__
  4. void Motor_Init(void);
  5. void Motor_SetSpeed(int8_t Speed);
  6. #endif
  7. //Motor.c
  8. #include "stm32f10x.h"                  // Device header
  9. #include "PWM.H"
  10. void Motor_Init(void)
  11. {
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  13.        
  14.         GPIO_InitTypeDef GPIO_InitStructure;
  15.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  16.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4 | GPIO_Pin_5;
  17.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  18.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  19.        
  20.         PWM_Init();
  21. }
  22. void Motor_SetSpeed(int8_t Speed)
  23. {
  24.         if(Speed >= 0)
  25.         {
  26.                 GPIO_SetBits(GPIOA, GPIO_Pin_4);
  27.                 GPIO_ResetBits(GPIOA, GPIO_Pin_5);
  28.                 PWM_SetCompare3(Speed);
  29.         }
  30.         else
  31.         {
  32.                 GPIO_ResetBits(GPIOA, GPIO_Pin_4);
  33.                 GPIO_SetBits(GPIOA, GPIO_Pin_5);
  34.                 PWM_SetCompare3(-Speed);
  35.         }
  36. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Motor.h"
  6. #include "Key.h"
  7. uint8_t KeyNum;
  8. int8_t Speed;
  9. int main(void)
  10. {
  11.         OLED_Init();
  12.         Motor_Init();
  13.         Key_Init();
  14.        
  15.         OLED_ShowString(1,1,"Speed:");
  16.        
  17.         while(1)
  18.         {
  19.                 KeyNum=Key_GetNum();
  20.                 if(KeyNum == 1)
  21.                 {
  22.                         Speed += 20;
  23.                         if(Speed >100)
  24.                         {
  25.                                 Speed = -100;
  26.                         }
  27.                 }
  28.                 Motor_SetSpeed(Speed);
  29.                 OLED_ShowSignedNum(1,7,Speed,3);
  30.         }
  31. }
复制代码
5.6 输入捕获模式测频率


创建新的文件模块化IC输入捕获到Hardware文件夹。 
实现:PWM模块将待测信号输出到PA0,PA0又通过导线,输入到PA6。PA6是TIM3的通道1,通道1通过输入捕获模块,测量得到频率。OLED不断刷新显示频率。
连线:利用一根飞线PA0 -> PA6
  1. //PWM.h
  2. #ifndef __PWM_H__
  3. #define __PWM_H__
  4. void PWM_Init(void);
  5. void PWM_SetCompare1(uint16_t Compare);
  6. void PWM_SetPrescaler(uint16_t Prescaler);
  7. #endif
  8. //PWM.c
  9. #include "stm32f10x.h"                  // Device header
  10. void PWM_Init(void)
  11. {
  12.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2,ENABLE);
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  14.        
  15.         GPIO_InitTypeDef GPIO_InitStructure;
  16.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  17.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
  18.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  19.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  20.        
  21.         TIM_InternalClockConfig(TIM2);
  22.        
  23.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  24.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  25.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  26.         TIM_TimeBaseInitStructure.TIM_Period = 100-1;                //ARR
  27.         TIM_TimeBaseInitStructure.TIM_Prescaler = 720-1;        //PSC
  28.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  29.         TIM_TimeBaseInit(TIM2,&TIM_TimeBaseInitStructure);
  30.        
  31.         TIM_OCInitTypeDef TIM_OCInitStructure;
  32.         TIM_OCStructInit(&TIM_OCInitStructure);
  33.         TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
  34.         TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
  35.         TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
  36.         TIM_OCInitStructure.TIM_Pulse = 50;                //CCR
  37.         TIM_OC1Init(TIM2, &TIM_OCInitStructure);
  38.        
  39.         TIM_Cmd(TIM2,ENABLE);
  40. }
  41. //设置CCR寄存器的值,改变通道1的占空比
  42. void PWM_SetCompare1(uint16_t Compare)
  43. {
  44.         TIM_SetCompare1(TIM2, Compare);
  45. }
  46. //改变频率PSC
  47. void PWM_SetPrescaler(uint16_t Prescaler)
  48. {
  49.         TIM_PrescalerConfig(TIM2, Prescaler,TIM_PSCReloadMode_Immediate);
  50. }
复制代码
  1. //IC.h
  2. #ifndef __IC_H__
  3. #define __IC_H__
  4. void IC_Init(void);
  5. uint16_t IC_GetFreq(void);
  6. #endif
  7. //IC.c
  8. #include "stm32f10x.h"                  // Device header
  9. void IC_Init(void)
  10. {
  11.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM3,ENABLE);
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  13.        
  14.         GPIO_InitTypeDef GPIO_InitStructure;
  15.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  16.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
  17.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  18.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  19.        
  20.         TIM_InternalClockConfig(TIM3);
  21.        
  22.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  23.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  24.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  25.         TIM_TimeBaseInitStructure.TIM_Period = 65536 - 1;                //ARR
  26.         TIM_TimeBaseInitStructure.TIM_Prescaler = 72 - 1;                //PSC
  27.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  28.         TIM_TimeBaseInit(TIM3,&TIM_TimeBaseInitStructure);
  29.        
  30.         TIM_ICInitTypeDef TIM_ICInitStructure;
  31.         TIM_ICInitStructure.TIM_Channel = TIM_Channel_1;
  32.         TIM_ICInitStructure.TIM_ICFilter = 0xF;
  33.         TIM_ICInitStructure.TIM_ICPolarity = TIM_ICPolarity_Rising;
  34.         TIM_ICInitStructure.TIM_ICPrescaler = TIM_ICPSC_DIV1;
  35.         TIM_ICInitStructure.TIM_ICSelection = TIM_ICSelection_DirectTI;
  36.         TIM_ICInit(TIM3,&TIM_ICInitStructure);
  37.        
  38.         TIM_SelectInputTrigger(TIM3, TIM_TS_TI1FP1);
  39.         TIM_SelectSlaveMode(TIM3,TIM_SlaveMode_Reset);
  40.        
  41.         TIM_Cmd(TIM3,ENABLE);
  42. }
  43. uint16_t IC_GetFreq(void)
  44. {
  45.         return 1000000 / (TIM_GetCapture1(TIM3) + 1);
  46. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "PWM.h"
  6. #include "IC.h"
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         PWM_Init();
  11.         IC_Init();
  12.        
  13.         OLED_ShowString(1,1,"Freq:00000Hz");
  14.        
  15.         PWM_SetPrescaler(720 -1);                //Freq = 72M / (PSC + 1) / 100
  16.         PWM_SetCompare1(50);                        //Duty = CCR / 100
  17.        
  18.         while(1)
  19.         {
  20.                 OLED_ShowNum(1,6,IC_GetFreq(),5);
  21.         }
  22. }
复制代码
 5.7 PWMI模式测频率占空比

本小节在 5.6 的基础上修改 IC 代码,除此外无变更。
实现:测占空比,与频率一起在OLED上刷新显示。 
  1. //IC.h
  2. #ifndef __IC_H__
  3. #define __IC_H__
  4. void IC_Init(void);
  5. uint16_t IC_GetFreq(void);
  6. uint16_t IC_GetDuty(void);
  7. #endif
  8. //IC.c
  9. #include "stm32f10x.h"                  // Device header
  10. void IC_Init(void)
  11. {
  12.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM3,ENABLE);
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  14.        
  15.         GPIO_InitTypeDef GPIO_InitStructure;
  16.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  17.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
  18.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  19.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  20.        
  21.         TIM_InternalClockConfig(TIM3);
  22.        
  23.         TIM_TimeBaseInitTypeDef TIM_TimeBaseInitStructure;
  24.         TIM_TimeBaseInitStructure.TIM_ClockDivision = TIM_CKD_DIV1;
  25.         TIM_TimeBaseInitStructure.TIM_CounterMode = TIM_CounterMode_Up;
  26.         TIM_TimeBaseInitStructure.TIM_Period = 65536 - 1;                //ARR
  27.         TIM_TimeBaseInitStructure.TIM_Prescaler = 72 - 1;                //PSC
  28.         TIM_TimeBaseInitStructure.TIM_RepetitionCounter = 0;
  29.         TIM_TimeBaseInit(TIM3,&TIM_TimeBaseInitStructure);
  30.        
  31.         TIM_ICInitTypeDef TIM_ICInitStructure;
  32.         TIM_ICInitStructure.TIM_Channel = TIM_Channel_1;
  33.         TIM_ICInitStructure.TIM_ICFilter = 0xF;
  34.         TIM_ICInitStructure.TIM_ICPolarity = TIM_ICPolarity_Rising;
  35.         TIM_ICInitStructure.TIM_ICPrescaler = TIM_ICPSC_DIV1;
  36.         TIM_ICInitStructure.TIM_ICSelection = TIM_ICSelection_DirectTI;
  37.         TIM_PWMIConfig(TIM3,&TIM_ICInitStructure);
  38.        
  39.         TIM_SelectInputTrigger(TIM3, TIM_TS_TI1FP1);
  40.         TIM_SelectSlaveMode(TIM3,TIM_SlaveMode_Reset);
  41.        
  42.         TIM_Cmd(TIM3,ENABLE);
  43. }
  44. //获取频率
  45. uint16_t IC_GetFreq(void)
  46. {
  47.         return 1000000 / (TIM_GetCapture1(TIM3) + 1);
  48. }
  49. //获取占空比
  50. uint16_t IC_GetDuty(void)
  51. {
  52.         return (TIM_GetCapture2(TIM3) + 1) * 100 / (TIM_GetCapture1(TIM3) + 1);
  53. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "PWM.h"
  6. #include "IC.h"
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         PWM_Init();
  11.         IC_Init();
  12.        
  13.         OLED_ShowString(1,1,"Freq:00000Hz");
  14.         OLED_ShowString(2,1,"Duty:00%");
  15.        
  16.         PWM_SetPrescaler(720 -1);                //Freq = 72M / (PSC + 1) / 100
  17.         PWM_SetCompare1(50);                        //Duty = CCR / 100
  18.        
  19.         while(1)
  20.         {
  21.                 OLED_ShowNum(1,6,IC_GetFreq(),5);
  22.                 OLED_ShowNum(2,6,IC_GetDuty(),2);
  23.         }
  24. }
复制代码
 5.8 编码器接口测速


延用 5.1 的代码 ,新增 Encoder 的模块化代码文件。
实现:利用旋转编码器,对旋转速率进行测速。向左旋转为负,反之为正。(着实就是 4.2 的计次,但是添加了清零,每次计次完成都清零,这样就是速率了。)每次在OLED上刷新显示速率,利用main的停止函数而不是Delay。
引脚: 旋转编码器的A -> PA6,B -> PA7。

  1. //Encoder.h
  2. #ifndef __ENCODER_H__
  3. #define __ENCODER_H__
  4. void Encoder_Init(void);
  5. int16_t Encoder_Get(void);
  6. #endif
  7. //Encoder.c
  8. #include "stm32f10x.h"                  // Device header
  9. #include "Delay.h"
  10. #include "OLED.h"
  11. #include "Timer.h"
  12. #include "Encoder.h"
  13. int16_t Speed;
  14. int main(void)
  15. {
  16.         OLED_Init();
  17.         Timer_Init();
  18.         Encoder_Init();
  19.        
  20.         OLED_ShowString(1,1,"Speed:");
  21.        
  22.         while(1)
  23.         {
  24.                 OLED_ShowSignedNum(1, 7, Speed, 5);
  25.         }
  26. }
  27. void TIM2_IRQHandler(void)
  28. {
  29.         if(TIM_GetITStatus(TIM2,TIM_IT_Update) == SET)
  30.         {
  31.                 Speed = Encoder_Get();
  32.                 TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
  33.         }
  34. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Timer.h"
  6. #include "Encoder.h"
  7. int16_t Speed;
  8. int main(void)
  9. {
  10.         OLED_Init();
  11.         Timer_Init();
  12.         Encoder_Init();
  13.        
  14.         OLED_ShowString(1,1,"Speed:");
  15.        
  16.         while(1)
  17.         {
  18.                 OLED_ShowSignedNum(1, 7, Speed, 5);
  19.         }
  20. }
  21. void TIM2_IRQHandler(void)
  22. {
  23.         if(TIM_GetITStatus(TIM2,TIM_IT_Update) == SET)
  24.         {
  25.                 Speed = Encoder_Get();
  26.                 TIM_ClearITPendingBit(TIM2,TIM_IT_Update);
  27.         }
  28. }
复制代码
六、ADC数模转换器

6.1 AD单通道 


延用 3.1 的代码,新增 AD 模块。
实现:AD模数转换。利用电位器,向左拧电压减小,向右宁电压增大。 
引脚:电位器三个引脚在上呈三角排列。左边引脚接电源负,右边引脚接电源正,中间引脚接PA0。 
  1. //AD.h
  2. #ifndef __AD_H__
  3. #define __AD_H__
  4. void AD_Init(void);
  5. uint16_t AD_GetValue(void);
  6. #endif
  7. //AD.c
  8. #include "stm32f10x.h"                  // Device header
  9. void AD_Init(void)
  10. {
  11.         //配置时钟
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1,ENABLE);
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  14.         RCC_ADCCLKConfig(RCC_PCLK2_Div6);
  15.        
  16.         //配置GPIO口
  17.         GPIO_InitTypeDef GPIO_InitStructure;
  18.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
  19.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
  20.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  21.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  22.        
  23.         //选择输入通道
  24.         ADC_RegularChannelConfig(ADC1,ADC_Channel_0,1,ADC_SampleTime_55Cycles5);
  25.        
  26.         //ADC初始化(单次转换、非扫描模式)
  27.         ADC_InitTypeDef ADC_InitStructure;
  28.         ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;
  29.         ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
  30.         ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
  31.         ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
  32.         ADC_InitStructure.ADC_ScanConvMode = DISABLE;
  33.         ADC_InitStructure.ADC_NbrOfChannel = 1;
  34.         ADC_Init(ADC1,&ADC_InitStructure);
  35.        
  36.         //开启电源
  37.         ADC_Cmd(ADC1,ENABLE);
  38.        
  39.         //ADC校准
  40.         ADC_ResetCalibration(ADC1);
  41.         while(ADC_GetResetCalibrationStatus(ADC1) == SET);
  42.         ADC_StartCalibration(ADC1);
  43.         while(ADC_GetCalibrationStatus(ADC1) == SET);
  44. }
  45. uint16_t AD_GetValue(void)
  46. {
  47.         ADC_SoftwareStartConvCmd(ADC1,ENABLE);                                        //启动
  48.         while(ADC_GetFlagStatus(ADC1,ADC_FLAG_EOC) == RESET);        //等待
  49.         return ADC_GetConversionValue(ADC1);                                        //读取
  50. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "AD.h"
  6. uint16_t ADValue;
  7. float Voltage;
  8. int main(void)
  9. {
  10.         OLED_Init();
  11.         AD_Init();
  12.        
  13.         OLED_ShowString(1,1,"ADValue:");
  14.         OLED_ShowString(2,1,"Voltage:0.00V");
  15.        
  16.         while(1)
  17.         {
  18.                 ADValue = AD_GetValue();
  19.                 Voltage = (float)ADValue / 4095 * 3.3;
  20.                
  21.                 OLED_ShowNum(1, 9, ADValue, 4);
  22.                 OLED_ShowNum(2, 9, Voltage, 1);
  23.                 OLED_ShowNum(2, 11, (uint16_t)(Voltage * 100) % 100, 2);
  24.                
  25.                 Delay_ms(100);
  26.         }
  27. }
复制代码
 6.2 AD多通道

实物图: 

复制 6.1 文件,电位器不变,新增光敏传感器热敏传感器对射式红外传感器。修改AD模块与main函数。
引脚:光敏传感器、热敏传感器、对射式红外传感器的AO引脚分别接PA1、PA2、PA3。VCC都接电源正,GND都接电源负。
  1. //AD.h
  2. #ifndef __AD_H__
  3. #define __AD_H__
  4. void AD_Init(void);
  5. uint16_t AD_GetValue(uint8_t ADC_Channel);
  6. #endif
  7. //AD.c
  8. #include "stm32f10x.h"                  // Device header
  9. void AD_Init(void)
  10. {
  11.         //配置时钟
  12.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1,ENABLE);
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  14.         RCC_ADCCLKConfig(RCC_PCLK2_Div6);
  15.        
  16.         //配置GPIO口
  17.         GPIO_InitTypeDef GPIO_InitStructure;
  18.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
  19.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3;
  20.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  21.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  22.        
  23.         //ADC初始化(单次转换、非扫描模式)
  24.         ADC_InitTypeDef ADC_InitStructure;
  25.         ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;
  26.         ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
  27.         ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
  28.         ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
  29.         ADC_InitStructure.ADC_ScanConvMode = DISABLE;
  30.         ADC_InitStructure.ADC_NbrOfChannel = 1;
  31.         ADC_Init(ADC1,&ADC_InitStructure);
  32.        
  33.         //开启电源
  34.         ADC_Cmd(ADC1,ENABLE);
  35.        
  36.         //ADC校准
  37.         ADC_ResetCalibration(ADC1);
  38.         while(ADC_GetResetCalibrationStatus(ADC1) == SET);
  39.         ADC_StartCalibration(ADC1);
  40.         while(ADC_GetCalibrationStatus(ADC1) == SET);
  41. }
  42. uint16_t AD_GetValue(uint8_t ADC_Channel)
  43. {
  44.         //选择输入通道
  45.         ADC_RegularChannelConfig(ADC1,ADC_Channel,1,ADC_SampleTime_55Cycles5);
  46.         ADC_SoftwareStartConvCmd(ADC1,ENABLE);                                        //启动
  47.         while(ADC_GetFlagStatus(ADC1,ADC_FLAG_EOC) == RESET);        //等待
  48.         return ADC_GetConversionValue(ADC1);                                        //读取
  49. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "AD.h"
  6. uint16_t AD0, AD1, AD2, AD3;
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         AD_Init();
  11.        
  12.         OLED_ShowString(1,1,"AD0:");
  13.         OLED_ShowString(2,1,"AD1:");
  14.         OLED_ShowString(3,1,"AD2:");
  15.         OLED_ShowString(4,1,"AD3:");
  16.        
  17.         while(1)
  18.         {
  19.                 AD0 = AD_GetValue(ADC_Channel_0);
  20.                 AD1 = AD_GetValue(ADC_Channel_1);
  21.                 AD2 = AD_GetValue(ADC_Channel_2);
  22.                 AD3 = AD_GetValue(ADC_Channel_3);
  23.                
  24.                 OLED_ShowNum(1, 5, AD0, 4);
  25.                 OLED_ShowNum(2, 5, AD1, 4);
  26.                 OLED_ShowNum(3, 5, AD2, 4);
  27.                 OLED_ShowNum(4, 5, AD3, 4);
  28.                
  29.                 Delay_ms(100);
  30.         }
  31. }
复制代码
七、DMA数据转运

7.1 DMA数据转运 单通道


复制 3.1 代码,新建 MyDMA 至System文件夹。
6.1 的接线相同。
实现:DataA每隔一秒向DataB传送数据,并在OLED更新显示。 
  1. //MyDMA.h
  2. #ifndef __MYDMA_H__
  3. #define __MYDMA_H__
  4. void MyDMA_Init(uint32_t AddrA, uint32_t AddrB, uint16_t Size);
  5. void MyDMA_Transfer(void);
  6. #endif
  7. //MyDMA.c
  8. #include "stm32f10x.h"                  // Device header
  9. uint16_t MyDMA_Size;
  10. void MyDMA_Init(uint32_t AddrA, uint32_t AddrB, uint16_t Size)
  11. {
  12.         MyDMA_Size = Size;
  13.        
  14.         RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1,ENABLE);
  15.        
  16.         DMA_InitTypeDef DMA_InitStructure;
  17.         DMA_InitStructure.DMA_PeripheralBaseAddr = AddrA;
  18.         DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
  19.         DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Enable;
  20.         DMA_InitStructure.DMA_MemoryBaseAddr = AddrB;
  21.         DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;
  22.         DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
  23.         DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
  24.         DMA_InitStructure.DMA_BufferSize = Size;
  25.         DMA_InitStructure.DMA_Mode = DMA_Mode_Normal;
  26.         DMA_InitStructure.DMA_M2M = DMA_M2M_Enable;
  27.         DMA_InitStructure.DMA_Priority = DMA_Priority_Medium;
  28.         DMA_Init(DMA1_Channel1, &DMA_InitStructure);
  29.        
  30.         DMA_Cmd(DMA1_Channel1,DISABLE);
  31. }
  32. void MyDMA_Transfer(void)
  33. {
  34.         DMA_Cmd(DMA1_Channel1,DISABLE);
  35.         DMA_SetCurrDataCounter(DMA1_Channel1,MyDMA_Size);
  36.         DMA_Cmd(DMA1_Channel1,ENABLE);
  37.        
  38.         while(DMA_GetFlagStatus(DMA1_FLAG_TC1) == RESET);
  39.         DMA_ClearFlag(DMA1_FLAG_TC1);
  40. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "MyDMA.h"
  6. uint8_t DataA[] = {0x01, 0x02, 0x03, 0x04};
  7. uint8_t DataB[] = {0, 0, 0, 0};
  8. int main(void)
  9. {
  10.         OLED_Init();
  11.        
  12.         MyDMA_Init((uint32_t)DataA,(uint32_t)DataB,4);
  13.        
  14.         OLED_ShowString(1,1,"DataA");
  15.         OLED_ShowString(3,1,"DataB");
  16.         OLED_ShowHexNum(1,8,(uint32_t)DataA,8);
  17.         OLED_ShowHexNum(3,8,(uint32_t)DataB,8);
  18.        
  19.         OLED_ShowHexNum(2,1,DataA[0],2);
  20.         OLED_ShowHexNum(2,4,DataA[1],2);
  21.         OLED_ShowHexNum(2,7,DataA[2],2);
  22.         OLED_ShowHexNum(2,10,DataA[3],2);
  23.         OLED_ShowHexNum(4,1,DataB[0],2);
  24.         OLED_ShowHexNum(4,4,DataB[1],2);
  25.         OLED_ShowHexNum(4,7,DataB[2],2);
  26.         OLED_ShowHexNum(4,10,DataB[3],2);
  27.        
  28.         while(1)
  29.         {
  30.                 DataA[0] ++;
  31.                 DataA[1] ++;
  32.                 DataA[2] ++;
  33.                 DataA[3] ++;
  34.                
  35.                 OLED_ShowHexNum(2,1,DataA[0],2);
  36.                 OLED_ShowHexNum(2,4,DataA[1],2);
  37.                 OLED_ShowHexNum(2,7,DataA[2],2);
  38.                 OLED_ShowHexNum(2,10,DataA[3],2);
  39.                 OLED_ShowHexNum(4,1,DataB[0],2);
  40.                 OLED_ShowHexNum(4,4,DataB[1],2);
  41.                 OLED_ShowHexNum(4,7,DataB[2],2);
  42.                 OLED_ShowHexNum(4,10,DataB[3],2);
  43.                
  44.                 Delay_ms(1000);
  45.                
  46.                 MyDMA_Transfer();
  47.                
  48.                 OLED_ShowHexNum(2,1,DataA[0],2);
  49.                 OLED_ShowHexNum(2,4,DataA[1],2);
  50.                 OLED_ShowHexNum(2,7,DataA[2],2);
  51.                 OLED_ShowHexNum(2,10,DataA[3],2);
  52.                 OLED_ShowHexNum(4,1,DataB[0],2);
  53.                 OLED_ShowHexNum(4,4,DataB[1],2);
  54.                 OLED_ShowHexNum(4,7,DataB[2],2);
  55.                 OLED_ShowHexNum(4,10,DataB[3],2);
  56.                
  57.                 Delay_ms(1000);
  58.         }
  59. }
复制代码

7.2 DMA+AD多通道


复制 6.2 代码。 
与 6.2 实现结果相同,但利用了DMA数据转运。
  1. //AD.h
  2. #ifndef __AD_H__
  3. #define __AD_H__
  4. extern uint16_t AD_Value[4];
  5. void AD_Init(void);
  6. #endif
  7. //AD.c
  8. #include "stm32f10x.h"                  // Device header
  9. uint16_t AD_Value[4];
  10. void AD_Init(void)
  11. {
  12.         //配置时钟
  13.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1,ENABLE);
  14.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  15.         RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1,ENABLE);
  16.        
  17.         RCC_ADCCLKConfig(RCC_PCLK2_Div6);
  18.        
  19.         //配置GPIO口
  20.         GPIO_InitTypeDef GPIO_InitStructure;
  21.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
  22.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3;
  23.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  24.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  25.        
  26.         ADC_RegularChannelConfig(ADC1,ADC_Channel_0,1,ADC_SampleTime_55Cycles5);
  27.         ADC_RegularChannelConfig(ADC1,ADC_Channel_1,2,ADC_SampleTime_55Cycles5);
  28.         ADC_RegularChannelConfig(ADC1,ADC_Channel_2,3,ADC_SampleTime_55Cycles5);
  29.         ADC_RegularChannelConfig(ADC1,ADC_Channel_3,4,ADC_SampleTime_55Cycles5);
  30.        
  31.         //ADC初始化(单次转换、非扫描模式)
  32.         ADC_InitTypeDef ADC_InitStructure;
  33.         ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;
  34.         ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
  35.         ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
  36.         ADC_InitStructure.ADC_ContinuousConvMode = ENABLE;
  37.         ADC_InitStructure.ADC_ScanConvMode = ENABLE;
  38.         ADC_InitStructure.ADC_NbrOfChannel = 4;
  39.         ADC_Init(ADC1,&ADC_InitStructure);
  40.        
  41.         DMA_InitTypeDef DMA_InitStructure;
  42.         DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)&ADC1->DR;
  43.         DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_HalfWord;
  44.         DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
  45.         DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)AD_Value;
  46.         DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_HalfWord;
  47.         DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
  48.         DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
  49.         DMA_InitStructure.DMA_BufferSize = 4;
  50.         DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
  51.         DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
  52.         DMA_InitStructure.DMA_Priority = DMA_Priority_Medium;
  53.         DMA_Init(DMA1_Channel1, &DMA_InitStructure);
  54.        
  55.         DMA_Cmd(DMA1_Channel1,ENABLE);
  56.         ADC_DMACmd(ADC1,ENABLE);
  57.         ADC_Cmd(ADC1,ENABLE);
  58.        
  59.         //ADC校准
  60.         ADC_ResetCalibration(ADC1);
  61.         while(ADC_GetResetCalibrationStatus(ADC1) == SET);
  62.         ADC_StartCalibration(ADC1);
  63.         while(ADC_GetCalibrationStatus(ADC1) == SET);
  64.        
  65.         ADC_SoftwareStartConvCmd(ADC1,ENABLE);                //启动
  66. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "AD.h"
  6. int main(void)
  7. {
  8.         OLED_Init();
  9.         AD_Init();
  10.        
  11.         OLED_ShowString(1,1,"AD0:");
  12.         OLED_ShowString(2,1,"AD1:");
  13.         OLED_ShowString(3,1,"AD2:");
  14.         OLED_ShowString(4,1,"AD3:");
  15.        
  16.         while(1)
  17.         {
  18.                 OLED_ShowNum(1, 5, AD_Value[0], 4);
  19.                 OLED_ShowNum(2, 5, AD_Value[1], 4);
  20.                 OLED_ShowNum(3, 5, AD_Value[2], 4);
  21.                 OLED_ShowNum(4, 5, AD_Value[3], 4);
  22.                
  23.                 Delay_ms(100);
  24.         }
  25. }
复制代码
 八、USART串口协议

8.1 串口发送


复制 3.1 代码,加上Serial文件。 
实现:串口发送数据。 每复位一次,串口发送一次数据。
接线:STLinkUSB转TTL同时插在电脑USB上 。
USB转TTL:TX -> PA10, RX -> PA9。STLink接线同上。
在串口助手中的最终显示结果如下:

  1. //Serial.h
  2. #ifndef __SERIAL_H__
  3. #define __SERIAL_H__
  4. #include <stdio.h>
  5. void Serial_Init(void);
  6. void Serial_SendByte(uint8_t Byte);
  7. void Serial_SendArray(uint8_t *Array,uint16_t Length);
  8. void Serial_SendString(char *String);
  9. void Serial_SendNumber(uint32_t Number,uint8_t Length);
  10. void Serial_Printf(char *format,...);
  11. #endif
  12. //Serial.c
  13. #include "stm32f10x.h"                  // Device header
  14. #include <stdio.h>
  15. #include <stdarg.h>
  16. void Serial_Init(void)
  17. {
  18.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
  19.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  20.        
  21.         GPIO_InitTypeDef GPIO_InitStructure;
  22.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  23.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  24.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  25.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  26.        
  27.         USART_InitTypeDef USART_InitStructure;
  28.         USART_InitStructure.USART_BaudRate = 9600;
  29.         USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  30.         USART_InitStructure.USART_Mode = USART_Mode_Tx;
  31.         USART_InitStructure.USART_Parity = USART_Parity_No;
  32.         USART_InitStructure.USART_StopBits = USART_StopBits_1;
  33.         USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  34.         USART_Init(USART1,&USART_InitStructure);
  35.        
  36.         USART_Cmd(USART1,ENABLE);
  37. }
  38. void Serial_SendByte(uint8_t Byte)
  39. {
  40.         USART_SendData(USART1,Byte);
  41.         while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET);
  42. }
  43. void Serial_SendArray(uint8_t *Array,uint16_t Length)
  44. {
  45.         uint16_t i;
  46.         for(i = 0;i < Length; i ++)
  47.         {
  48.                 Serial_SendByte(Array[i]);
  49.         }
  50. }
  51. void Serial_SendString(char *String)
  52. {
  53.         uint8_t i;
  54.         for(i = 0;String[i] != '\0'; i ++)
  55.         {
  56.                 Serial_SendByte(String[i]);
  57.         }
  58. }       
  59. uint32_t Serial_Pow(uint32_t X,uint32_t Y)
  60. {
  61.         uint32_t Result = 1;
  62.         while(Y --)
  63.         {
  64.                 Result *= X;
  65.         }
  66.         return Result;
  67. }
  68. void Serial_SendNumber(uint32_t Number,uint8_t Length)
  69. {
  70.         uint8_t i;
  71.         for(i = 0;i < Length; i ++)
  72.         {
  73.                 Serial_SendByte(Number / Serial_Pow(10,Length - i - 1) % 10 + '0');
  74.         }
  75. }       
  76. int fputc(int ch,FILE *f)
  77. {
  78.         Serial_SendByte(ch);
  79.         return ch;
  80. }
  81. //可变参数
  82. void Serial_Printf(char *format,...)
  83. {
  84.         char String[100];
  85.         va_list arg;
  86.         va_start(arg, format);
  87.         vsprintf(String, format, arg);
  88.         va_end(arg);
  89.         Serial_SendString(String);
  90. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Serial.h"
  6. int main(void)
  7. {
  8.         OLED_Init();
  9.         Serial_Init();
  10.        
  11.         Serial_SendByte(0x41);
  12.        
  13.         uint8_t MyArray[] = {0x42, 0x43, 0x44, 0x45};
  14.         Serial_SendArray(MyArray,4);
  15.        
  16.         Serial_SendString("\r\nNum1=");
  17.        
  18.         Serial_SendNumber(111,3);
  19.        
  20.         printf("\r\nNum2=%d",222);
  21.        
  22.         char String[100];
  23.         sprintf(String,"\r\nNum3=%d",333);
  24.         Serial_SendString(String);
  25.        
  26.         Serial_Printf("\r\nNum4=%d",444);
  27.         Serial_Printf("\r\n");
  28.        
  29.         while(1)
  30.         {
  31.                
  32.         }
  33. }
复制代码
 8.2 串口发送+接收

 复制 8.1 串口发送代码,接线相同不更改。
实现:停止接收。在串口助手发送数据,成功接收,并在OLED上也显示。目前只支持一个字节的接收。

  1. //Serial.h
  2. #ifndef __SERIAL_H__
  3. #define __SERIAL_H__
  4. #include <stdio.h>
  5. void Serial_Init(void);
  6. void Serial_SendByte(uint8_t Byte);
  7. void Serial_SendArray(uint8_t *Array,uint16_t Length);
  8. void Serial_SendString(char *String);
  9. void Serial_SendNumber(uint32_t Number,uint8_t Length);
  10. void Serial_Printf(char *format,...);
  11. uint8_t Serial_GetRxFlag(void);
  12. uint8_t Serial_GetRxData(void);
  13. #endif
  14. //Serial.c
  15. #include "stm32f10x.h"                  // Device header
  16. #include <stdio.h>
  17. #include <stdarg.h>
  18. uint8_t Serial_RxData;
  19. uint8_t Serial_RxFlag;
  20. void Serial_Init(void)
  21. {
  22.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
  23.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  24.        
  25.         GPIO_InitTypeDef GPIO_InitStructure;
  26.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  27.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  28.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  29.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  30.        
  31.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  32.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
  33.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  34.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  35.        
  36.         USART_InitTypeDef USART_InitStructure;
  37.         USART_InitStructure.USART_BaudRate = 9600;
  38.         USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  39.         USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
  40.         USART_InitStructure.USART_Parity = USART_Parity_No;
  41.         USART_InitStructure.USART_StopBits = USART_StopBits_1;
  42.         USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  43.         USART_Init(USART1,&USART_InitStructure);
  44.        
  45.         USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
  46.        
  47.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  48.        
  49.         NVIC_InitTypeDef NVIC_InitStructure;
  50.         NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
  51.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  52.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  53.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  54.         NVIC_Init(&NVIC_InitStructure);
  55.        
  56.         USART_Cmd(USART1,ENABLE);
  57. }
  58. void Serial_SendByte(uint8_t Byte)
  59. {
  60.         USART_SendData(USART1,Byte);
  61.         while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET);
  62. }
  63. void Serial_SendArray(uint8_t *Array,uint16_t Length)
  64. {
  65.         uint16_t i;
  66.         for(i = 0;i < Length; i ++)
  67.         {
  68.                 Serial_SendByte(Array[i]);
  69.         }
  70. }
  71. void Serial_SendString(char *String)
  72. {
  73.         uint8_t i;
  74.         for(i = 0;String[i] != '\0'; i ++)
  75.         {
  76.                 Serial_SendByte(String[i]);
  77.         }
  78. }       
  79. uint32_t Serial_Pow(uint32_t X,uint32_t Y)
  80. {
  81.         uint32_t Result = 1;
  82.         while(Y --)
  83.         {
  84.                 Result *= X;
  85.         }
  86.         return Result;
  87. }
  88. void Serial_SendNumber(uint32_t Number,uint8_t Length)
  89. {
  90.         uint8_t i;
  91.         for(i = 0;i < Length; i ++)
  92.         {
  93.                 Serial_SendByte(Number / Serial_Pow(10,Length - i - 1) % 10 + '0');
  94.         }
  95. }       
  96. int fputc(int ch,FILE *f)
  97. {
  98.         Serial_SendByte(ch);
  99.         return ch;
  100. }
  101. //可变参数
  102. void Serial_Printf(char *format,...)
  103. {
  104.         char String[100];
  105.         va_list arg;
  106.         va_start(arg, format);
  107.         vsprintf(String, format, arg);
  108.         va_end(arg);
  109.         Serial_SendString(String);
  110. }
  111. uint8_t Serial_GetRxFlag(void)
  112. {
  113.         if(Serial_RxFlag == 1)
  114.         {
  115.                 Serial_RxFlag = 0;
  116.                 return 1;
  117.         }
  118.         return 0;
  119. }
  120. uint8_t Serial_GetRxData(void)
  121. {
  122.         return Serial_RxData;
  123. }
  124. void USART1_IRQHandler(void)
  125. {
  126.         if(USART_GetITStatus(USART1, USART_IT_RXNE) == SET)
  127.         {
  128.                 Serial_RxData = USART_ReceiveData(USART1);
  129.                 Serial_RxFlag = 1;
  130.                 USART_ClearITPendingBit(USART1, USART_IT_RXNE);
  131.         }
  132. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Serial.h"
  6. uint8_t RxData;
  7. int main(void)
  8. {
  9.         OLED_Init();
  10.         OLED_ShowString(1, 1, "RxData:");
  11.        
  12.         Serial_Init();
  13.        
  14.         while(1)
  15.         {
  16.                 if(Serial_GetRxFlag() == 1)
  17.                 {
  18.                         RxData = Serial_GetRxData();
  19.                         Serial_SendByte(RxData);
  20.                         OLED_ShowHexNum(1, 8, RxData, 2);
  21.                 }
  22.         }
  23. }
复制代码
8.3 串口收发HEX数据包


复制 8.2 的代码。 
接线:STLink和USB转TTL照常接。PB1接按键。LED长脚接电源正,短脚接PA1。
实现:串口收发Hex数据包。按下按键发送,串口接受区显示接收的数据包TxPacket。串口助手发送数据包,会在OLED上显示接收的数据包RxPacket。



  1. //Serial.h
  2. #ifndef __SERIAL_H__
  3. #define __SERIAL_H__
  4. #include <stdio.h>
  5. extern uint8_t Serial_TxPacket[];
  6. extern uint8_t Serial_RxPacket[];
  7. void Serial_Init(void);
  8. void Serial_SendByte(uint8_t Byte);
  9. void Serial_SendArray(uint8_t *Array,uint16_t Length);
  10. void Serial_SendString(char *String);
  11. void Serial_SendNumber(uint32_t Number,uint8_t Length);
  12. void Serial_Printf(char *format,...);
  13. void Serial_SendPacket(void);
  14. uint8_t Serial_GetRxFlag(void);
  15. #endif
  16. //Serial.c
  17. #include "stm32f10x.h"                  // Device header
  18. #include <stdio.h>
  19. #include <stdarg.h>
  20. uint8_t Serial_TxPacket[4];
  21. uint8_t Serial_RxPacket[4];
  22. uint8_t Serial_RxFlag;
  23. void Serial_Init(void)
  24. {
  25.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
  26.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  27.        
  28.         GPIO_InitTypeDef GPIO_InitStructure;
  29.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  30.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  31.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  32.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  33.        
  34.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  35.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
  36.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  37.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  38.        
  39.         USART_InitTypeDef USART_InitStructure;
  40.         USART_InitStructure.USART_BaudRate = 9600;
  41.         USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  42.         USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
  43.         USART_InitStructure.USART_Parity = USART_Parity_No;
  44.         USART_InitStructure.USART_StopBits = USART_StopBits_1;
  45.         USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  46.         USART_Init(USART1,&USART_InitStructure);
  47.        
  48.         USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
  49.        
  50.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  51.        
  52.         NVIC_InitTypeDef NVIC_InitStructure;
  53.         NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
  54.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  55.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  56.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  57.         NVIC_Init(&NVIC_InitStructure);
  58.        
  59.         USART_Cmd(USART1,ENABLE);
  60. }
  61. void Serial_SendByte(uint8_t Byte)
  62. {
  63.         USART_SendData(USART1,Byte);
  64.         while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET);
  65. }
  66. void Serial_SendArray(uint8_t *Array,uint16_t Length)
  67. {
  68.         uint16_t i;
  69.         for(i = 0;i < Length; i ++)
  70.         {
  71.                 Serial_SendByte(Array[i]);
  72.         }
  73. }
  74. void Serial_SendString(char *String)
  75. {
  76.         uint8_t i;
  77.         for(i = 0;String[i] != '\0'; i ++)
  78.         {
  79.                 Serial_SendByte(String[i]);
  80.         }
  81. }       
  82. uint32_t Serial_Pow(uint32_t X,uint32_t Y)
  83. {
  84.         uint32_t Result = 1;
  85.         while(Y --)
  86.         {
  87.                 Result *= X;
  88.         }
  89.         return Result;
  90. }
  91. void Serial_SendNumber(uint32_t Number,uint8_t Length)
  92. {
  93.         uint8_t i;
  94.         for(i = 0;i < Length; i ++)
  95.         {
  96.                 Serial_SendByte(Number / Serial_Pow(10,Length - i - 1) % 10 + '0');
  97.         }
  98. }       
  99. int fputc(int ch,FILE *f)
  100. {
  101.         Serial_SendByte(ch);
  102.         return ch;
  103. }
  104. //可变参数
  105. void Serial_Printf(char *format,...)
  106. {
  107.         char String[100];
  108.         va_list arg;
  109.         va_start(arg, format);
  110.         vsprintf(String, format, arg);
  111.         va_end(arg);
  112.         Serial_SendString(String);
  113. }
  114. void Serial_SendPacket(void)
  115. {
  116.         Serial_SendByte(0xFF);
  117.         Serial_SendArray(Serial_TxPacket,4);
  118.         Serial_SendByte(0xFE);
  119. }
  120. uint8_t Serial_GetRxFlag(void)
  121. {
  122.         if(Serial_RxFlag == 1)
  123.         {
  124.                 Serial_RxFlag = 0;
  125.                 return 1;
  126.         }
  127.         return 0;
  128. }
  129. void USART1_IRQHandler(void)
  130. {
  131.         static uint8_t RxState = 0;
  132.         static uint8_t pRxPacket = 0;
  133.         if(USART_GetITStatus(USART1, USART_IT_RXNE) == SET)
  134.         {
  135.                 uint8_t RxData = USART_ReceiveData(USART1);
  136.                
  137.                 if(RxState == 0)
  138.                 {
  139.                         if(RxData == 0xFF)
  140.                         {
  141.                                 RxState = 1;
  142.                                 pRxPacket = 0;
  143.                         }
  144.                 }
  145.                 else if(RxState == 1)
  146.                 {
  147.                         Serial_RxPacket[pRxPacket] = RxData;
  148.                         pRxPacket ++;
  149.                         if(pRxPacket >= 4)
  150.                         {
  151.                                 RxState =2;
  152.                         }
  153.                 }
  154.                 else if(RxState == 2)
  155.                 {
  156.                         if(RxData == 0xFE)
  157.                         {
  158.                                 RxState = 0;
  159.                                 Serial_RxFlag = 1;
  160.                         }
  161.                 }
  162.                 USART_ClearITPendingBit(USART1, USART_IT_RXNE);
  163.         }
  164. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Serial.h"
  6. #include "Key.h"
  7. uint8_t KeyNum;
  8. int main(void)
  9. {
  10.         OLED_Init();
  11.         Key_Init();
  12.         Serial_Init();
  13.        
  14.         OLED_ShowString(1, 1, "TxPacket");
  15.         OLED_ShowString(3, 1, "RxPacket");
  16.        
  17.         Serial_TxPacket[0] = 0x01;
  18.         Serial_TxPacket[1] = 0x02;
  19.         Serial_TxPacket[2] = 0x03;
  20.         Serial_TxPacket[3] = 0x04;
  21.        
  22.         while(1)
  23.         {
  24.                 KeyNum = Key_GetNum();
  25.                 if(KeyNum == 1)
  26.                 {
  27.                         Serial_TxPacket[0] ++;
  28.                         Serial_TxPacket[1] ++;
  29.                         Serial_TxPacket[2] ++;
  30.                         Serial_TxPacket[3] ++;
  31.                
  32.                         Serial_SendPacket();
  33.                        
  34.                         OLED_ShowHexNum(2, 1, Serial_TxPacket[0], 2);
  35.                         OLED_ShowHexNum(2, 4, Serial_TxPacket[1], 2);
  36.                         OLED_ShowHexNum(2, 7, Serial_TxPacket[2], 2);
  37.                         OLED_ShowHexNum(2, 10, Serial_TxPacket[3], 2);
  38.                 }
  39.                 if(Serial_GetRxFlag() == 1)
  40.                 {
  41.                         OLED_ShowHexNum(4, 1, Serial_RxPacket[0], 2);
  42.                         OLED_ShowHexNum(4, 4, Serial_RxPacket[1], 2);
  43.                         OLED_ShowHexNum(4, 7, Serial_RxPacket[2], 2);
  44.                         OLED_ShowHexNum(4, 10, Serial_RxPacket[3], 2);
  45.                 }
  46.         }
  47. }
复制代码
8.4 串口收发文本数据包

复制 8.3 代码。
实现:串口收发文本数据包。在串口助手发送“@LED_ON(回车)”,LED亮,STM32发送“LED_ON_OK\r\n”。发送“@LED_OFF(回车)”,LED灭,STM32发送“LED_OFF_OK\r\n”。发送其他则显示ERROR_COMMAND


  1. //Serial.h
  2. #ifndef __SERIAL_H__
  3. #define __SERIAL_H__
  4. #include <stdio.h>
  5. extern char Serial_RxPacket[];
  6. extern uint8_t Serial_RxFlag;
  7. void Serial_Init(void);
  8. void Serial_SendByte(uint8_t Byte);
  9. void Serial_SendArray(uint8_t *Array,uint16_t Length);
  10. void Serial_SendString(char *String);
  11. void Serial_SendNumber(uint32_t Number,uint8_t Length);
  12. void Serial_Printf(char *format,...);
  13. #endif
  14. //Serial.c
  15. #include "stm32f10x.h"                  // Device header
  16. #include <stdio.h>
  17. #include <stdarg.h>
  18. char Serial_RxPacket[100];
  19. uint8_t Serial_RxFlag;
  20. void Serial_Init(void)
  21. {
  22.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
  23.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
  24.        
  25.         GPIO_InitTypeDef GPIO_InitStructure;
  26.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  27.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  28.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  29.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  30.        
  31.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
  32.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
  33.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  34.         GPIO_Init(GPIOA, &GPIO_InitStructure);
  35.        
  36.         USART_InitTypeDef USART_InitStructure;
  37.         USART_InitStructure.USART_BaudRate = 9600;
  38.         USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  39.         USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
  40.         USART_InitStructure.USART_Parity = USART_Parity_No;
  41.         USART_InitStructure.USART_StopBits = USART_StopBits_1;
  42.         USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  43.         USART_Init(USART1,&USART_InitStructure);
  44.        
  45.         USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
  46.        
  47.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
  48.        
  49.         NVIC_InitTypeDef NVIC_InitStructure;
  50.         NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
  51.         NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  52.         NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  53.         NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  54.         NVIC_Init(&NVIC_InitStructure);
  55.        
  56.         USART_Cmd(USART1,ENABLE);
  57. }
  58. void Serial_SendByte(uint8_t Byte)
  59. {
  60.         USART_SendData(USART1,Byte);
  61.         while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET);
  62. }
  63. void Serial_SendArray(uint8_t *Array,uint16_t Length)
  64. {
  65.         uint16_t i;
  66.         for(i = 0;i < Length; i ++)
  67.         {
  68.                 Serial_SendByte(Array[i]);
  69.         }
  70. }
  71. void Serial_SendString(char *String)
  72. {
  73.         uint8_t i;
  74.         for(i = 0;String[i] != '\0'; i ++)
  75.         {
  76.                 Serial_SendByte(String[i]);
  77.         }
  78. }       
  79. uint32_t Serial_Pow(uint32_t X,uint32_t Y)
  80. {
  81.         uint32_t Result = 1;
  82.         while(Y --)
  83.         {
  84.                 Result *= X;
  85.         }
  86.         return Result;
  87. }
  88. void Serial_SendNumber(uint32_t Number,uint8_t Length)
  89. {
  90.         uint8_t i;
  91.         for(i = 0;i < Length; i ++)
  92.         {
  93.                 Serial_SendByte(Number / Serial_Pow(10,Length - i - 1) % 10 + '0');
  94.         }
  95. }       
  96. int fputc(int ch,FILE *f)
  97. {
  98.         Serial_SendByte(ch);
  99.         return ch;
  100. }
  101. //可变参数
  102. void Serial_Printf(char *format,...)
  103. {
  104.         char String[100];
  105.         va_list arg;
  106.         va_start(arg, format);
  107.         vsprintf(String, format, arg);
  108.         va_end(arg);
  109.         Serial_SendString(String);
  110. }
  111. void USART1_IRQHandler(void)
  112. {
  113.         static uint8_t RxState = 0;
  114.         static uint8_t pRxPacket = 0;
  115.         if(USART_GetITStatus(USART1, USART_IT_RXNE) == SET)
  116.         {
  117.                 uint8_t RxData = USART_ReceiveData(USART1);
  118.                
  119.                 if(RxState == 0)
  120.                 {
  121.                         if(RxData == '@' && Serial_RxFlag == 0)
  122.                         {
  123.                                 RxState = 1;
  124.                                 pRxPacket = 0;
  125.                         }
  126.                 }
  127.                 else if(RxState == 1)
  128.                 {
  129.                         if(RxData == '\r')
  130.                         {
  131.                                 RxState =2;
  132.                         }
  133.                         else
  134.                         {
  135.                                 Serial_RxPacket[pRxPacket] = RxData;
  136.                                 pRxPacket ++;
  137.                         }
  138.                 }
  139.                 else if(RxState == 2)
  140.                 {
  141.                         if(RxData == '\n')
  142.                         {
  143.                                 RxState = 0;
  144.                                 Serial_RxPacket[pRxPacket] = '\0';
  145.                                 Serial_RxFlag = 1;
  146.                         }
  147.                 }
  148.                 USART_ClearITPendingBit(USART1, USART_IT_RXNE);
  149.         }
  150. }
复制代码
  1. //main.c
  2. #include "stm32f10x.h"                  // Device header
  3. #include "Delay.h"
  4. #include "OLED.h"
  5. #include "Serial.h"
  6. #include "LED.h"
  7. #include <string.h>
  8. int main(void)
  9. {
  10.         OLED_Init();
  11.         LED_Init();
  12.         Serial_Init();
  13.        
  14.         OLED_ShowString(1, 1, "TxPacket");
  15.         OLED_ShowString(3, 1, "RxPacket");
  16.        
  17.         while(1)
  18.         {
  19.                 if(Serial_RxFlag == 1)
  20.                 {
  21.                         OLED_ShowString(4, 1, "                ");
  22.                         OLED_ShowString(4, 1, Serial_RxPacket);
  23.                        
  24.                         if(strcmp(Serial_RxPacket,"LED_ON") == 0)
  25.                         {
  26.                                 LED1_ON();
  27.                                 Serial_SendString("LED_ON_OK\r\n");
  28.                                 OLED_ShowString(2, 1, "                ");
  29.                                 OLED_ShowString(2, 1, "LED_ON_OK");
  30.                         }
  31.                         else if(strcmp(Serial_RxPacket,"LED_OFF") == 0)
  32.                         {
  33.                                 LED1_OFF();
  34.                                 Serial_SendString("LED_OFF_OK\r\n");
  35.                                 OLED_ShowString(2, 1, "                ");
  36.                                 OLED_ShowString(2, 1, "LED_OFF_OK");
  37.                         }
  38.                         else{
  39.                                 Serial_SendString("ERROR_COMMAND\r\n");
  40.                                 OLED_ShowString(2, 1, "                ");
  41.                                 OLED_ShowString(2, 1, "ERROR_COMMAND");
  42.                         }
  43.                         Serial_RxFlag = 0;
  44.                 }
  45.         }
  46. }
复制代码







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

本帖子中包含更多资源

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

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

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

本版积分规则

何小豆儿在此

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