Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

13 lines
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