您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
197B

  1. #ifndef _LED_H
  2. #define _LED_H
  3. #include "stm32f10x.h"
  4. void led_init(void);
  5. #define ledH GPIO_SetBits(GPIOC,GPIO_Pin_0)
  6. #define ledL GPIO_ResetBits(GPIOC,GPIO_Pin_0)
  7. #define led0 PCout(0)
  8. #endif