led.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "stm32f2xx.h"
  4. //引脚定义
  5. /******************** A_LED ********************/
  6. #define A_LED1_PIN GPIO_Pin_0
  7. #define A_LED1_GPIO_PORT GPIOA
  8. #define A_LED1_GPIO_CLK RCC_AHB1Periph_GPIOA
  9. #define A_LED2_PIN GPIO_Pin_1
  10. #define A_LED2_GPIO_PORT GPIOA
  11. #define A_LED2_GPIO_CLK RCC_AHB1Periph_GPIOA
  12. #define A_LED3_PIN GPIO_Pin_2
  13. #define A_LED3_GPIO_PORT GPIOA
  14. #define A_LED3_GPIO_CLK RCC_AHB1Periph_GPIOA
  15. #define A_LED4_PIN GPIO_Pin_3
  16. #define A_LED4_GPIO_PORT GPIOA
  17. #define A_LED4_GPIO_CLK RCC_AHB1Periph_GPIOA
  18. #define A_LED5_PIN GPIO_Pin_7
  19. #define A_LED5_GPIO_PORT GPIOG
  20. #define A_LED5_GPIO_CLK RCC_AHB1Periph_GPIOG
  21. #define A_LED6_PIN GPIO_Pin_4
  22. #define A_LED6_GPIO_PORT GPIOG
  23. #define A_LED6_GPIO_CLK RCC_AHB1Periph_GPIOG
  24. #define A_LED7_PIN GPIO_Pin_5
  25. #define A_LED7_GPIO_PORT GPIOG
  26. #define A_LED7_GPIO_CLK RCC_AHB1Periph_GPIOG
  27. #define A_LED8_PIN GPIO_Pin_6
  28. #define A_LED8_GPIO_PORT GPIOG
  29. #define A_LED8_GPIO_CLK RCC_AHB1Periph_GPIOG
  30. #define A_LED9_PIN GPIO_Pin_8
  31. #define A_LED9_GPIO_PORT GPIOA
  32. #define A_LED9_GPIO_CLK RCC_AHB1Periph_GPIOA
  33. #define A_LED10_PIN GPIO_Pin_9
  34. #define A_LED10_GPIO_PORT GPIOA
  35. #define A_LED10_GPIO_CLK RCC_AHB1Periph_GPIOA
  36. #define A_LED11_PIN GPIO_Pin_10
  37. #define A_LED11_GPIO_PORT GPIOA
  38. #define A_LED11_GPIO_CLK RCC_AHB1Periph_GPIOA
  39. #define A_LED12_PIN GPIO_Pin_11
  40. #define A_LED12_GPIO_PORT GPIOA
  41. #define A_LED12_GPIO_CLK RCC_AHB1Periph_GPIOA
  42. #define A_LED13_PIN GPIO_Pin_12
  43. #define A_LED13_GPIO_PORT GPIOA
  44. #define A_LED13_GPIO_CLK RCC_AHB1Periph_GPIOA
  45. #define A_LED14_PIN GPIO_Pin_13
  46. #define A_LED14_GPIO_PORT GPIOA
  47. #define A_LED14_GPIO_CLK RCC_AHB1Periph_GPIOA
  48. #define A_LED15_PIN GPIO_Pin_14
  49. #define A_LED15_GPIO_PORT GPIOA
  50. #define A_LED15_GPIO_CLK RCC_AHB1Periph_GPIOA
  51. #define A_LED16_PIN GPIO_Pin_15
  52. #define A_LED16_GPIO_PORT GPIOA
  53. #define A_LED16_GPIO_CLK RCC_AHB1Periph_GPIOA
  54. #define A_LED17_PIN GPIO_Pin_0
  55. #define A_LED17_GPIO_PORT GPIOB
  56. #define A_LED17_GPIO_CLK RCC_AHB1Periph_GPIOB
  57. #define A_LED18_PIN GPIO_Pin_1
  58. #define A_LED18_GPIO_PORT GPIOB
  59. #define A_LED18_GPIO_CLK RCC_AHB1Periph_GPIOB
  60. /******************** B_LED ********************/
  61. #define B_LED1_PIN GPIO_Pin_2
  62. #define B_LED1_GPIO_PORT GPIOB
  63. #define B_LED1_GPIO_CLK RCC_AHB1Periph_GPIOB
  64. #define B_LED2_PIN GPIO_Pin_3
  65. #define B_LED2_GPIO_PORT GPIOB
  66. #define B_LED2_GPIO_CLK RCC_AHB1Periph_GPIOB
  67. #define B_LED3_PIN GPIO_Pin_4
  68. #define B_LED3_GPIO_PORT GPIOB
  69. #define B_LED3_GPIO_CLK RCC_AHB1Periph_GPIOB
  70. #define B_LED4_PIN GPIO_Pin_5
  71. #define B_LED4_GPIO_PORT GPIOB
  72. #define B_LED4_GPIO_CLK RCC_AHB1Periph_GPIOB
  73. #define B_LED5_PIN GPIO_Pin_6
  74. #define B_LED5_GPIO_PORT GPIOB
  75. #define B_LED5_GPIO_CLK RCC_AHB1Periph_GPIOB
  76. #define B_LED6_PIN GPIO_Pin_7
  77. #define B_LED6_GPIO_PORT GPIOB
  78. #define B_LED6_GPIO_CLK RCC_AHB1Periph_GPIOB
  79. #define B_LED7_PIN GPIO_Pin_8
  80. #define B_LED7_GPIO_PORT GPIOB
  81. #define B_LED7_GPIO_CLK RCC_AHB1Periph_GPIOB
  82. #define B_LED8_PIN GPIO_Pin_9
  83. #define B_LED8_GPIO_PORT GPIOB
  84. #define B_LED8_GPIO_CLK RCC_AHB1Periph_GPIOB
  85. #define B_LED9_PIN GPIO_Pin_10
  86. #define B_LED9_GPIO_PORT GPIOB
  87. #define B_LED9_GPIO_CLK RCC_AHB1Periph_GPIOB
  88. #define B_LED10_PIN GPIO_Pin_11
  89. #define B_LED10_GPIO_PORT GPIOB
  90. #define B_LED10_GPIO_CLK RCC_AHB1Periph_GPIOB
  91. #define B_LED11_PIN GPIO_Pin_12
  92. #define B_LED11_GPIO_PORT GPIOB
  93. #define B_LED11_GPIO_CLK RCC_AHB1Periph_GPIOB
  94. #define B_LED12_PIN GPIO_Pin_13
  95. #define B_LED12_GPIO_PORT GPIOB
  96. #define B_LED12_GPIO_CLK RCC_AHB1Periph_GPIOB
  97. #define B_LED13_PIN GPIO_Pin_14
  98. #define B_LED13_GPIO_PORT GPIOB
  99. #define B_LED13_GPIO_CLK RCC_AHB1Periph_GPIOB
  100. #define B_LED14_PIN GPIO_Pin_15
  101. #define B_LED14_GPIO_PORT GPIOB
  102. #define B_LED14_GPIO_CLK RCC_AHB1Periph_GPIOB
  103. #define B_LED15_PIN GPIO_Pin_12
  104. #define B_LED15_GPIO_PORT GPIOD
  105. #define B_LED15_GPIO_CLK RCC_AHB1Periph_GPIOD
  106. #define B_LED16_PIN GPIO_Pin_13
  107. #define B_LED16_GPIO_PORT GPIOD
  108. #define B_LED16_GPIO_CLK RCC_AHB1Periph_GPIOD
  109. #define B_LED17_PIN GPIO_Pin_14
  110. #define B_LED17_GPIO_PORT GPIOD
  111. #define B_LED17_GPIO_CLK RCC_AHB1Periph_GPIOD
  112. #define B_LED18_PIN GPIO_Pin_15
  113. #define B_LED18_GPIO_PORT GPIOD
  114. #define B_LED18_GPIO_CLK RCC_AHB1Periph_GPIOD
  115. /******************** C_LED ********************/
  116. #define C_LED1_PIN GPIO_Pin_0
  117. #define C_LED1_GPIO_PORT GPIOE
  118. #define C_LED1_GPIO_CLK RCC_AHB1Periph_GPIOE
  119. #define C_LED2_PIN GPIO_Pin_1
  120. #define C_LED2_GPIO_PORT GPIOE
  121. #define C_LED2_GPIO_CLK RCC_AHB1Periph_GPIOE
  122. #define C_LED3_PIN GPIO_Pin_2
  123. #define C_LED3_GPIO_PORT GPIOE
  124. #define C_LED3_GPIO_CLK RCC_AHB1Periph_GPIOE
  125. #define C_LED4_PIN GPIO_Pin_3
  126. #define C_LED4_GPIO_PORT GPIOE
  127. #define C_LED4_GPIO_CLK RCC_AHB1Periph_GPIOE
  128. #define C_LED5_PIN GPIO_Pin_4
  129. #define C_LED5_GPIO_PORT GPIOE
  130. #define C_LED5_GPIO_CLK RCC_AHB1Periph_GPIOE
  131. #define C_LED6_PIN GPIO_Pin_5
  132. #define C_LED6_GPIO_PORT GPIOE
  133. #define C_LED6_GPIO_CLK RCC_AHB1Periph_GPIOE
  134. #define C_LED7_PIN GPIO_Pin_6
  135. #define C_LED7_GPIO_PORT GPIOE
  136. #define C_LED7_GPIO_CLK RCC_AHB1Periph_GPIOE
  137. #define C_LED8_PIN GPIO_Pin_7
  138. #define C_LED8_GPIO_PORT GPIOE
  139. #define C_LED8_GPIO_CLK RCC_AHB1Periph_GPIOE
  140. #define C_LED9_PIN GPIO_Pin_8
  141. #define C_LED9_GPIO_PORT GPIOE
  142. #define C_LED9_GPIO_CLK RCC_AHB1Periph_GPIOE
  143. #define C_LED10_PIN GPIO_Pin_9
  144. #define C_LED10_GPIO_PORT GPIOE
  145. #define C_LED10_GPIO_CLK RCC_AHB1Periph_GPIOE
  146. #define C_LED11_PIN GPIO_Pin_10
  147. #define C_LED11_GPIO_PORT GPIOE
  148. #define C_LED11_GPIO_CLK RCC_AHB1Periph_GPIOE
  149. #define C_LED12_PIN GPIO_Pin_11
  150. #define C_LED12_GPIO_PORT GPIOE
  151. #define C_LED12_GPIO_CLK RCC_AHB1Periph_GPIOE
  152. #define C_LED13_PIN GPIO_Pin_12
  153. #define C_LED13_GPIO_PORT GPIOE
  154. #define C_LED13_GPIO_CLK RCC_AHB1Periph_GPIOE
  155. #define C_LED14_PIN GPIO_Pin_13
  156. #define C_LED14_GPIO_PORT GPIOE
  157. #define C_LED14_GPIO_CLK RCC_AHB1Periph_GPIOE
  158. #define C_LED15_PIN GPIO_Pin_14
  159. #define C_LED15_GPIO_PORT GPIOE
  160. #define C_LED15_GPIO_CLK RCC_AHB1Periph_GPIOE
  161. #define C_LED16_PIN GPIO_Pin_15
  162. #define C_LED16_GPIO_PORT GPIOE
  163. #define C_LED16_GPIO_CLK RCC_AHB1Periph_GPIOE
  164. #define C_LED17_PIN GPIO_Pin_0
  165. #define C_LED17_GPIO_PORT GPIOF
  166. #define C_LED17_GPIO_CLK RCC_AHB1Periph_GPIOF
  167. #define C_LED18_PIN GPIO_Pin_1
  168. #define C_LED18_GPIO_PORT GPIOF
  169. #define C_LED18_GPIO_CLK RCC_AHB1Periph_GPIOF
  170. /******************** D_LED ********************/
  171. #define D_LED1_PIN GPIO_Pin_2
  172. #define D_LED1_GPIO_PORT GPIOF
  173. #define D_LED1_GPIO_CLK RCC_AHB1Periph_GPIOF
  174. #define D_LED2_PIN GPIO_Pin_3
  175. #define D_LED2_GPIO_PORT GPIOF
  176. #define D_LED2_GPIO_CLK RCC_AHB1Periph_GPIOF
  177. #define D_LED3_PIN GPIO_Pin_4
  178. #define D_LED3_GPIO_PORT GPIOF
  179. #define D_LED3_GPIO_CLK RCC_AHB1Periph_GPIOF
  180. #define D_LED4_PIN GPIO_Pin_5
  181. #define D_LED4_GPIO_PORT GPIOF
  182. #define D_LED4_GPIO_CLK RCC_AHB1Periph_GPIOF
  183. #define D_LED5_PIN GPIO_Pin_6
  184. #define D_LED5_GPIO_PORT GPIOF
  185. #define D_LED5_GPIO_CLK RCC_AHB1Periph_GPIOF
  186. #define D_LED6_PIN GPIO_Pin_7
  187. #define D_LED6_GPIO_PORT GPIOF
  188. #define D_LED6_GPIO_CLK RCC_AHB1Periph_GPIOF
  189. #define D_LED7_PIN GPIO_Pin_8
  190. #define D_LED7_GPIO_PORT GPIOF
  191. #define D_LED7_GPIO_CLK RCC_AHB1Periph_GPIOF
  192. #define D_LED8_PIN GPIO_Pin_9
  193. #define D_LED8_GPIO_PORT GPIOF
  194. #define D_LED8_GPIO_CLK RCC_AHB1Periph_GPIOF
  195. #define D_LED9_PIN GPIO_Pin_10
  196. #define D_LED9_GPIO_PORT GPIOF
  197. #define D_LED9_GPIO_CLK RCC_AHB1Periph_GPIOF
  198. #define D_LED10_PIN GPIO_Pin_11
  199. #define D_LED10_GPIO_PORT GPIOF
  200. #define D_LED10_GPIO_CLK RCC_AHB1Periph_GPIOF
  201. #define D_LED11_PIN GPIO_Pin_12
  202. #define D_LED11_GPIO_PORT GPIOF
  203. #define D_LED11_GPIO_CLK RCC_AHB1Periph_GPIOF
  204. #define D_LED12_PIN GPIO_Pin_13
  205. #define D_LED12_GPIO_PORT GPIOF
  206. #define D_LED12_GPIO_CLK RCC_AHB1Periph_GPIOF
  207. #define D_LED13_PIN GPIO_Pin_14
  208. #define D_LED13_GPIO_PORT GPIOF
  209. #define D_LED13_GPIO_CLK RCC_AHB1Periph_GPIOF
  210. #define D_LED14_PIN GPIO_Pin_15
  211. #define D_LED14_GPIO_PORT GPIOF
  212. #define D_LED14_GPIO_CLK RCC_AHB1Periph_GPIOF
  213. #define D_LED15_PIN GPIO_Pin_0
  214. #define D_LED15_GPIO_PORT GPIOG
  215. #define D_LED15_GPIO_CLK RCC_AHB1Periph_GPIOG
  216. #define D_LED16_PIN GPIO_Pin_1
  217. #define D_LED16_GPIO_PORT GPIOG
  218. #define D_LED16_GPIO_CLK RCC_AHB1Periph_GPIOG
  219. #define D_LED17_PIN GPIO_Pin_2
  220. #define D_LED17_GPIO_PORT GPIOG
  221. #define D_LED17_GPIO_CLK RCC_AHB1Periph_GPIOG
  222. #define D_LED18_PIN GPIO_Pin_3
  223. #define D_LED18_GPIO_PORT GPIOG
  224. #define D_LED18_GPIO_CLK RCC_AHB1Periph_GPIOG
  225. /************************************************************/
  226. void LED_GPIO_Config(void);
  227. void led(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, uint8_t a);
  228. /** 控制LED灯亮灭的宏,
  229. * LED低电平亮,设置ON=0,OFF=1
  230. * 若LED高电平亮,把宏设置成ON=1 ,OFF=0 即可
  231. */
  232. #define ON 1
  233. #define OFF 0
  234. uint8_t all_whilte_light(uint8_t cmd);
  235. uint8_t all_green_light(uint8_t cmd);
  236. uint8_t all_red_light(uint8_t cmd);
  237. uint8_t all_yellow_light(uint8_t cmd);
  238. uint8_t all_light(uint8_t cmd);
  239. #endif