19 lines
408 B
C
19 lines
408 B
C
|
/*
|
||
|
* @Description:
|
||
|
* @Date: 2021-03-10 10:44:21
|
||
|
* @LastEditors: CK.Zh
|
||
|
* @LastEditTime: 2021-03-10 10:45:51
|
||
|
* @FilePath: \NaviKit_EC_stm32\App\Inc\th_power.h
|
||
|
*/
|
||
|
#ifndef __TH_POWER_H__
|
||
|
#define __TH_POWER_H__
|
||
|
|
||
|
#include "cmsis_os2.h"
|
||
|
|
||
|
/* Definitions for PowerMonitTask */
|
||
|
osThreadId_t PowerMonitTaskHandle;
|
||
|
const osThreadAttr_t PowerMonitTask_attributes;
|
||
|
|
||
|
void StartPowerMonitTask(void *argument);
|
||
|
#endif
|