Skip to content
New issue

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

63 docs: menu_ is now documented #100

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@
"semaphore": "cpp",
"span": "cpp"
},
"particle.firmwareVersion": "5.3.0",
"particle.targetPlatform": "tracker",
"particle.targetDevice": "",
willcyber marked this conversation as resolved.
Show resolved Hide resolved
"particle.firmwareVersion": "5.3.1",
"particle.targetPlatform": "boron",
willcyber marked this conversation as resolved.
Show resolved Hide resolved
"cmake.configureOnOpen": false,
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.cStandard": "c11",
Expand Down
7 changes: 7 additions & 0 deletions src/fileCLI/fileCLI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ class FileCLI{
DIR* dir_stack[FILE_CLI_MAX_DIR_DEPTH];
char path_stack[FILE_CLI_MAX_DIR_DEPTH][NAME_MAX];
int current_dir;

/**
* @brief Structure representing a command menu entry for FileCLI.
*
* Associated specific user commands with specific actions.
* The findCommand function then finds the matching command in the menu.
ntlhui marked this conversation as resolved.
Show resolved Hide resolved
*/
typedef struct menu_
{
const char cmd;
ntlhui marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading