19 lines
358 B
C
19 lines
358 B
C
/*
|
|
* @Description:
|
|
* @Date: 2021-03-09 10:37:34
|
|
* @LastEditors: CK.Zh
|
|
* @LastEditTime: 2021-03-09 10:42:05
|
|
* @FilePath: \NaviKit_EC_stm32\App\Inc\cdc.h
|
|
*/
|
|
#ifndef __TH_CDC_H__
|
|
#define __TH_CDC_H__
|
|
|
|
#include "cmsis_os2.h"
|
|
|
|
osThreadId_t cdcMonitorTaskHandle;
|
|
const osThreadAttr_t cdcMonitorTask_attributes;
|
|
|
|
void CdcMonitorTask(void *argument);
|
|
|
|
#endif
|