1 Star 0 Fork 1

yjwpm/ha102m

forked from 海石生风/ha102m 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.h 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
chenss 提交于 2018-05-29 20:05 . 修正编译错误
/*
* main.h
*
* Created on: 201855
* Author: chenss
*/
#ifndef MAIN_H_
#define MAIN_H_
#include "stm8l15x.h"
#include "task.h"
#include <string.h>
#ifdef _COSMIC_
# define INLINE
#else
# define INLINE inline
#endif
#if defined(__DEBUG__)
# define DEBUG(f) f
# define ON_DEBUG(f) f
# define ON_RELEASE(f)
#else
# define DEBUG(f)
# define ON_DEBUG(f)
# define ON_RELEASE(f) f
#endif
#define IDLE() wfi()
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
#define BIT_SET(reg, bit) (reg) |= (bit)
#define BIT_CLR(reg, bit) (reg) &= ~ (bit)
#define BITS_SET(reg, mask, bits) do{reg = (reg & (~(mask))) | (bits);}while(0)
//#define IO(port, pin) port, pin
#define _PORT(p, n) GPIO##p
#define _PIN(p, n) GPIO_Pin_##n
#define _PN(p, n) n
#define _EPIN(p, n) EXTI_Pin_##n
#define _EIRQn(p, n) EXTI##n##_IRQn
#define PORT(io) _PORT(io)
#define PIN(io) _PIN(io)
#define PN(io) _PN(io)
#define EPIN(io) _EPIN(io)
#define EIRQn(io) _EIRQn(io)
void Main_FastRunModeCmd(FunctionalState state);
#endif /* MAIN_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/yjwpm/ha102m.git
[email protected]:yjwpm/ha102m.git
yjwpm
ha102m
ha102m
master

搜索帮助