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"
|
|||
|
/*---------------------------------------------------------------*/
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
void shockLed_Task(void);
|
|||
|
void FlashLed_Task(void);
|
|||
|
/*---------------------------------------------------------------*/
|
|||
|
//<2F><>ɫ<EFBFBD>궨<EFBFBD><EAB6A8>
|
|||
|
#define POWER_SAFECOLOR 0xff0000 //<2F><>ȫɫ<C8AB><C9AB><EFBFBD><EFBFBD>
|
|||
|
#define POWER_WARNCOLOR 0x00ff00 //<2F><><EFBFBD><EFBFBD>ɫ<EFBFBD><C9AB><EFBFBD><EFBFBD>
|
|||
|
#endif
|
|||
|
/*---------------------------------------------------------------*/
|
|||
|
|