2025-12-06 13:49:01 +08:00
|
|
|
/*
|
|
|
|
|
* led.h
|
|
|
|
|
*
|
|
|
|
|
* Created on: May 15, 2025
|
|
|
|
|
* Author: cc
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MCU_DRIVER_INC_LED_H_
|
|
|
|
|
#define MCU_DRIVER_INC_LED_H_
|
|
|
|
|
|
|
|
|
|
#include "ch564.h"
|
|
|
|
|
|
2026-01-08 21:32:11 +08:00
|
|
|
#define SYS_LED_ON GPIOA_ResetBits(GPIO_Pin_12)
|
2025-12-06 13:49:01 +08:00
|
|
|
#define SYS_LED_OFF GPIOA_SetBits(GPIO_Pin_12)
|
|
|
|
|
#define SYS_LED_FLIP GPIOA_InverseBits(GPIO_Pin_12)
|
|
|
|
|
|
|
|
|
|
void SYS_LED_Init(void);
|
|
|
|
|
void SYS_LED_Task(void);
|
|
|
|
|
|
|
|
|
|
#endif /* MCU_DRIVER_INC_LED_H_ */
|