Ai
2 Star 10 Fork 7

wdliming/MultiTimer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
multi_timer.h 752 Bytes
一键复制 编辑 原始数据 按行查看 历史
wdliming 提交于 2021-06-16 22:06 +08:00 . 代码美化
/*
* Copyright (c) 2016 Zibin Zheng <znbin@qq.com>
* All rights reserved
*/
#ifndef _MULTI_TIMER_H_
#define _MULTI_TIMER_H_
#include "stdint.h"
#include "stddef.h"
typedef struct Timer
{
uint32_t timeout;
uint32_t repeat;
void (*timeout_cb) (void);
struct Timer* next;
} Timer;
#ifdef __cplusplus
extern "C" {
#endif
void timer_init (struct Timer* handle, void (*timeout_cb) (), uint32_t timeout, uint32_t repeat);
int timer_start (struct Timer* handle);
void timer_stop (struct Timer* handle);
void timer_ticks (void);
void timer_loop (void);
// void timer_again(struct Timer* handle);
// void timer_set_repeat(struct Timer* handle, uint32_t repeat);
#ifdef __cplusplus
}
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/liming2019/MultiTimer.git
git@gitee.com:liming2019/MultiTimer.git
liming2019
MultiTimer
MultiTimer
master

搜索帮助