mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 20:49:49 +04:00
* cli_shell: separate into toolbox * fix: cmd flags * fix formatting * cli: increase default stack depth * cli_shell: fix loader lock logic * cli: fix command flags * fix f18 * speaker_debug: fix * cli_registry: fix docs * ufbt: rename cli target back * cli: rename app and record * cli: fix and simplify help command * cli_master_shell: fix ext commands * fix formatting * cli: rename master to main * fix formatting --------- Co-authored-by: hedger <hedger@users.noreply.github.com>
10 lines
193 B
C
10 lines
193 B
C
#pragma once
|
|
|
|
#include <toolbox/cli/cli_command.h>
|
|
#include <toolbox/cli/cli_registry.h>
|
|
|
|
#define RECORD_CLI "cli"
|
|
#define CLI_APPID "cli"
|
|
|
|
void cli_main_commands_init(CliRegistry* registry);
|