1 Star 0 Fork 1

yjwpm/ha102m

forked from 海石生风/ha102m 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
active.c 417 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenss 提交于 2018-05-29 19:30 . Init with ha102t source code
/*
* active.c
*
* Created on: 2018526
* Author: chenss
*/
#include "active.h"
static uint8_t _actionBits;
void Active_Init(void)
{
_actionBits = 0;
}
void Active_Set(Active_t act, bool isActive)
{
if(isActive)
{
BIT_SET(_actionBits, (uint8_t) (1 << act));
}
else
{
BIT_CLR(_actionBits, (uint8_t) (1 << act));
}
}
bool Active_HaveAction(void)
{
return _actionBits ? TRUE : FALSE;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/yjwpm/ha102m.git
[email protected]:yjwpm/ha102m.git
yjwpm
ha102m
ha102m
master

搜索帮助