1 Star 0 Fork 12

411592004/SoftTimer

forked from miaoguoqiang/SoftTimer 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stimer.h 835 Bytes
一键复制 编辑 原始数据 按行查看 历史
miaoguoqiang 提交于 2022-04-10 21:17 . 定时器溢出检测
/*
* stimer.h
*
* Created on: 2021年12月1日
* Author: hello
*/
#ifndef STIMER_H_
#define STIMER_H_
#include <stdint.h>
#define STIMER_OPT_SINGLE 1
#define STIMER_OPT_REPEAT 2
typedef struct _stimer
{
const char* name;
uint32_t timeout_ticks;
uint32_t timeout_ticks_copy;
uint32_t current_ticks;
void (*callback)(void* arg);
int opt;
void* arg;
struct _stimer* next;
}stimer_t;
typedef struct _stimer stimer_t;
int stimer_init(stimer_t* timer, const char* name, void (*timeout_callback)(void* arg), void* arg, uint32_t ticks, int opt);
int stimer_start(stimer_t* timer);
int stimer_stop(stimer_t* timer);
int stimer_restart(stimer_t* timer);
uint32_t stimer_getticks(const stimer_t* timer);
void stimer_poll(void);
void stimer_ticks(void);
#endif /* STIMER_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/bailingniao_760/SoftTimer.git
git@gitee.com:bailingniao_760/SoftTimer.git
bailingniao_760
SoftTimer
SoftTimer
main

搜索帮助