加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
EntTypeFramework.h 710 Bytes
一键复制 编辑 原始数据 按行查看 历史
拉锁 提交于 2021-02-02 16:18 . 初始化仓库
#ifndef __ENT_TYPE_FRAMEWORK_H__
#define __ENT_TYPE_FRAMEWORK_H__
#ifdef __cplusplus
extern "C" {
#endif
/* 通用 */
#include "EtF_Config.h"
#include "type.h"
#include "list.h"
#include "Fifo.h"
#include "common.h"
#include "object.h"
/* 框架 */
#if ETF_DEVICE_EN //设备框架
#include "Device.h"
#endif
#if ETF_COROUTINE_EN //协程框架
#include "Coroutine.h"
#endif
#if ETF_EVENT_EN //事件框架
#include "Event.h"
#endif
#if ETF_TIMER_EN //定时器框架
#include "Timer.h"
#endif
/* 组件 */
#if USE_CONSOLE_UART
#include "console.h"
#endif
#if USE_SLOG
#include "slog.h"
#endif
#ifdef __cplusplus
}
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化