20 lines
370 B
C
20 lines
370 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 CoulombReadHandle;
|
||
|
|
||
|
const osThreadAttr_t CoulombRead_attributes;
|
||
|
|
||
|
void StartCoulombRead(void *argument);
|
||
|
|
||
|
#endif
|