Files
MobKBK 460e0e9e73 init
2026-06-20 21:22:34 +08:00

28 lines
639 B
C

#ifndef __LED_H
#define __LED_H
#include "sys.h"
#include "system.h"
#define LED_TASK_PRIO 3 //Task priority //任务优先级
#define LED_STK_SIZE 128 //Task stack size //任务堆栈大小
/*--------Buzzer control pin--------*/
#define Buzzer_PORT GPIOA
#define Buzzer_PIN GPIO_Pin_8
#define Buzzer PAout(8)
/*----------------------------------*/
/*--------LED control pin--------*/
#define LED_PORT GPIOA
#define LED_PIN GPIO_Pin_12
#define LED PAout(12)
/*----------------------------------*/
void LED_Init(void);
void Buzzer_Init(void);
void Led_Flash(u16 time);
void led_task(void *pvParameters);
extern int Led_Count;
#endif