led.h 214 B

123456789101112
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "sys.h"
  4. #define LED0 PCout(13)// PB5
  5. #define out PBout(7)// PB7
  6. #define buzz PBout(14)// PB5
  7. #define FM PCout(14)// PB6
  8. void LED_Init(void);//³õʼ»¯
  9. #endif