26 lines
486 B
C
26 lines
486 B
C
/*
|
||
* 模块名称:ADC Sampling Task
|
||
* 模块功能:TPAFE5160 8 通道同步采样,数据缓存与通知
|
||
* 适用平台:STM32F407ZGTx + TPAFE5160
|
||
* 作者:王建锋
|
||
* 创建日期:2026-07-19
|
||
* 修改记录:
|
||
* v1.0 2026-07-19 王建锋 创建初始版本
|
||
*/
|
||
|
||
#ifndef __ADC_TASK_H
|
||
#define __ADC_TASK_H
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
int adc_task_init(void);
|
||
void adc_task_func(void const *arg);
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif /* __ADC_TASK_H */
|