You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 satır
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