1 Star 3 Fork 0

thtfcccj/Usart

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
UsartDevCfg_SMenu.h 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
/***************************************************************************
UsartDev中的struct _UsartDevCfg,-在使用SMenu菜单系统时的实现
****************************************************************************/
#ifndef _USART_DEV_CFG_SMENU_H
#define _USART_DEV_CFG_SMENU_H
#ifdef SUPPORT_EX_PREINCLUDE//不支持Preinlude時
#include "Preinclude.h"
#endif
#include "SMenuUser.h"
#include "UsartDevCfg.h"
/***************************************************************************
相关函数
****************************************************************************/
//-------------------------------Cfg操作菜单------------------------------
extern const struct _SMenuFun SMenu_UsartDevCfgCfg;
//-----------------------------波特效率操作菜单------------------------------
#ifndef SUPPORT_USART_DEV_CFG_TINY //非精简模式时
extern const struct _SMenuFun SMenu_UsartDevCfgBuad;
#endif
//-----------------------------用户扩展U0模式菜单----------------------------
#ifdef USART_DEV_CFG_USER
extern const struct _SMenuFun SMenu_UsartDevU0Cfg; //扩展Cfg操作菜单
extern const struct _SMenuFun SMenu_UsartDevU0SpaceT; //SpaceT菜单
extern const struct _SMenuFun SMenu_UsartDevU0WaitT; //WaitTAdr菜单
extern const struct _SMenuFun SMenu_UsartDevU0ADR; //从机时的Adr菜单
#endif
/***************************************************************************
回调函数
****************************************************************************/
//------------------由User结构得到正在调整的UsartDevCfg结构--------------------
#if USART_DEV_CFG_COUNT > 1 //多个时
struct _UsartDevCfg *SMenu_UsartDevCfg_cbGet(const struct _SMenuUser *pUser);
#else
#define SMenu_UsartDevCfg_cbGet(user) &UsartDevCfg[0]
#endif
//------------------由User结构得到正在调整的UsartDevCfg ID--------------------
#if USART_DEV_CFG_COUNT > 1 //多个时
unsigned char SMenu_UsartDevCfg_cbGetId(const struct _SMenuUser *pUser);
#else
#define SMenu_UsartDevCfg_cbGetId(user) (0)
#endif
#endif //_USART_DEV_CFG_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/thtfcccj/Usart.git
git@gitee.com:thtfcccj/Usart.git
thtfcccj
Usart
Usart
master

搜索帮助