23 lines
472 B
C
23 lines
472 B
C
/**
|
|
****************************************************************************************************
|
|
* @file app_demo.h
|
|
* @author
|
|
* @version V1.0
|
|
* @date 2024-03-10
|
|
* @brief demo头文件
|
|
****************************************************************************************************
|
|
*/
|
|
|
|
#ifndef __APP_DEMO_H
|
|
#define __APP_DEMO_H
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
void task1(uint32_t baseTime);
|
|
|
|
void task2(uint32_t baseTime);
|
|
|
|
|
|
#endif
|