We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
大神,提几个新功能建议,希望能集成到当前shell中(如果不集成也请指导一下如何实现): 1、增加登录密码,当前版本没有登录密码,只能自己测试用,产品投放现场后就不敢用了,希望能增加登录密码的设置。 2、增加变量查询的功能,便于在调试解决查看一些地址的异常情况。这个不知道如何实现比较好,最好能查结构体程序的值。
The text was updated successfully, but these errors were encountered:
bool shellActive = false; void shellCheck(SHELL_TypeDef *shell, char data) { /** 缓冲输入的字符,检测到回车输入的时候将输入和密码进行比较 * 如果密码正确,shellActive = true */ }
shellTask函数中(或者调用shellHandler的地方
if (shellActive == false) { shellCheck(shell, data); } else { shellHandler(shell, data); }
Sorry, something went wrong.
No branches or pull requests
大神,提几个新功能建议,希望能集成到当前shell中(如果不集成也请指导一下如何实现):
1、增加登录密码,当前版本没有登录密码,只能自己测试用,产品投放现场后就不敢用了,希望能增加登录密码的设置。
2、增加变量查询的功能,便于在调试解决查看一些地址的异常情况。这个不知道如何实现比较好,最好能查结构体程序的值。
The text was updated successfully, but these errors were encountered: