20 lines
365 B
C
20 lines
365 B
C
/*
|
|
* @Description:
|
|
* @Date: 2021-03-10 10:36:01
|
|
* @LastEditors: CK.Zh
|
|
* @LastEditTime: 2021-03-10 10:39:06
|
|
* @FilePath: \NaviKit_EC_stm32\App\Inc\th_coulomb.h
|
|
*/
|
|
#ifndef __TH_COULOMB_H__
|
|
#define __TH_COULOMB_H__
|
|
|
|
#include "cmsis_os2.h"
|
|
|
|
osThreadId_t CoulombTaskHandle;
|
|
|
|
const osThreadAttr_t CoulombTask_attributes;
|
|
|
|
void CoulombTask(void *argument);
|
|
|
|
#endif
|