1 Star 0 Fork 8

Anderson/vtor_elec_module

forked from vtor3478/vtor_elec_module 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vtor_shell.h 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
#ifndef __VTOR_SHELL_H__
#define __VTOR_SHELL_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "vtor_elec_module_config.h"
#ifdef __VTOR_SHELL__
typedef int32_t (*VtorShellFun)();
typedef struct VtorShell
{
VtorShellFun fun;
const int8_t* name;
}VtorShellStruct;
extern VtorShellStruct* vtorShellHeader;
// 内置参考函数:帮助,列表
void VtorShell_Void(void);
void VtorShell_Help(void);
void VtorShell_List(void);
void VtorShell_Int(int32_t num);
int32_t VtorShell_CallAddress(void);
void VtorShell_WriteMem(int32_t addr, int32_t val);
int32_t VtorShell_ReadMem(int32_t addr);
// 时间戳,用于统计函数执行时间
int32_t VtorShell_GetTime(void);
// 打印参数、返回值、消耗时间等信息
void VtorShell_PrintShellInfo(VtorShellStruct* shell, uint8_t argc, int32_t* argv);
void VtorShell_PrintExeInfo(int32_t ret, int32_t time);
// 高级字符串操作:查找函数,查找参数
VtorShellStruct* VtorShell_GetShell(int8_t* str);
int32_t VtorShell_GetArg(int8_t* str, int32_t* argv);
// vtorshell调用函数,扫描与初始化,执行
void VtorShell_Init(void);
int32_t VtorShell_Scan(int8_t* str);
int32_t VtorShell_Exec(VtorShellStruct* shell, uint8_t argc, int32_t* argv);
#endif // __VTOR_SHELL__
#ifdef __cplusplus
}
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Thomas_Ti/vtor_elec_module.git
git@gitee.com:Thomas_Ti/vtor_elec_module.git
Thomas_Ti
vtor_elec_module
vtor_elec_module
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385