代码拉取完成,页面将自动刷新
同步操作将从 vtor3478/vtor_elec_module 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。