23 lines
731 B
C
23 lines
731 B
C
/*****************************************************************
|
|
;Project: Light
|
|
;MCU:
|
|
;Date:
|
|
;File:
|
|
;Function:
|
|
******************************************************************/
|
|
#ifndef __SHOCKLED_TASK_H
|
|
#define __SHOCKLED_TASK_H
|
|
/*---------------------------------------------------------------*/
|
|
#include "ARMCM0.h"
|
|
/*---------------------------------------------------------------*/
|
|
//函数声明
|
|
void shockLed_Task(void);
|
|
void FlashLed_Task(void);
|
|
/*---------------------------------------------------------------*/
|
|
//颜色宏定义
|
|
#define POWER_SAFECOLOR 0xff0000 //安全色,绿
|
|
#define POWER_WARNCOLOR 0x00ff00 //警告色,红
|
|
#endif
|
|
/*---------------------------------------------------------------*/
|
|
|