1 Star 0 Fork 0

Gumy/hysteresis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hysteresis.h 504 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gumy 提交于 2024-02-29 10:13 . 首个版本
// Copyright SUMEC, all rights reserved.
// 滞环
// Author: gumy <gumingyang@sumec.com.cn>
#ifndef HYSTERESIS_H
#define HYSTERESIS_H
#include "stdbool.h"
#include "stddef.h"
#include "stdint.h"
typedef struct {
int32_t Max;
int32_t Min;
// 施密特比较类型.0:下降.1:上升
bool IsRise;
bool Flag;
int32_t Count;
int32_t CheckNum;
} HysteresisParam;
// HysteresisComparator 滞环比较器
void HysteresisComparator(HysteresisParam *param, int32_t value);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luckpi/hysteresis.git
git@gitee.com:luckpi/hysteresis.git
luckpi
hysteresis
hysteresis
master

搜索帮助