代码拉取完成,页面将自动刷新
同步操作将从 vtor3478/vtor_elec_module 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef __VTOR_TIMER_H__
#define __VTOR_TIMER_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "vtor_elec_module_config.h"
#ifdef __VTOR_TIMER__
#define VTOR_TIMER_STATE_STOP 0
#define VTOR_TIMER_STATE_START 1
#define VTOR_TIMER_STATE_WAITING 2
#define VTOR_TIMER_STATE_READY 3
#define VTOR_TIMER_STATE_RUNNING 4
typedef void (*VtorTimerFun)(void);
typedef struct
{
VtorTimerFun fun; // 将要执行的函数
uint32_t interval; // 当计次达到interval,执行fun函数
uint8_t state; // 状态
uint32_t curTime; // 当前计次
uint32_t runCnt; // 本函数运行次数
uint32_t runTime; // 完成本次任务耗时多久
}VtorTimer;
void VtorTimer_VoidFun(void);
// 一直指向所有任务的头,不可更改
extern VtorTimer* vtorTimerHeader;
// 实际任务运行
void VtorTimer_Schedule(void);
// 时间片运行
void VtorTimer_IncTick(uint32_t tick);
void VtorTimer_Init(void);
uint32_t VtorTimer_GetTick(void);
uint32_t VtorTimer_GetCnt(void);
VtorTimer* VtorTimer_Restart(VtorTimerFun fun, uint32_t interval);
VtorTimer* VtorTimer_Start(VtorTimerFun fun, uint32_t interval);
void VtorTimer_RunNow(VtorTimerFun fun);
void VtorTimer_Stop(VtorTimerFun fun);
void VtorTimer_Delete(VtorTimerFun fun);
VtorTimer* VtorTimer_GetRunningTimer(void);
VtorTimer* VtorTimer_GetTimerByFun(VtorTimerFun fun);
void VtorTimer_StopCallback(VtorTimerFun fun);
void VtorTimer_StartCallback(VtorTimerFun fun);
#endif // __VTOR_TIMER__
#ifdef __cplusplus
}
#endif
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。