mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +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>
47 lines
2.1 KiB
C
47 lines
2.1 KiB
C
#include "cli_main_shell.h"
|
|
#include "cli_main_commands.h"
|
|
#include <toolbox/cli/cli_ansi.h>
|
|
#include <toolbox/cli/shell/cli_shell.h>
|
|
#include <furi_hal_version.h>
|
|
|
|
void cli_main_motd(void* context) {
|
|
UNUSED(context);
|
|
printf(ANSI_FLIPPER_BRAND_ORANGE
|
|
"\r\n"
|
|
" _.-------.._ -,\r\n"
|
|
" .-\"```\"--..,,_/ /`-, -, \\ \r\n"
|
|
" .:\" /:/ /'\\ \\ ,_..., `. | |\r\n"
|
|
" / ,----/:/ /`\\ _\\~`_-\"` _;\r\n"
|
|
" ' / /`\"\"\"'\\ \\ \\.~`_-' ,-\"'/ \r\n"
|
|
" | | | 0 | | .-' ,/` /\r\n"
|
|
" | ,..\\ \\ ,.-\"` ,/` /\r\n"
|
|
" ; : `/`\"\"\\` ,/--==,/-----,\r\n"
|
|
" | `-...| -.___-Z:_______J...---;\r\n"
|
|
" : ` _-'\r\n"
|
|
" _L_ _ ___ ___ ___ ___ ____--\"`___ _ ___\r\n"
|
|
"| __|| | |_ _|| _ \\| _ \\| __|| _ \\ / __|| | |_ _|\r\n"
|
|
"| _| | |__ | | | _/| _/| _| | / | (__ | |__ | |\r\n"
|
|
"|_| |____||___||_| |_| |___||_|_\\ \\___||____||___|\r\n"
|
|
"\r\n" ANSI_FG_BR_WHITE "Welcome to Flipper Zero Command Line Interface!\r\n"
|
|
"Read the manual: https://docs.flipper.net/development/cli\r\n"
|
|
"Run `help` or `?` to list available commands\r\n"
|
|
"\r\n" ANSI_RESET);
|
|
|
|
const Version* firmware_version = furi_hal_version_get_firmware_version();
|
|
if(firmware_version) {
|
|
printf(
|
|
"Firmware version: %s %s (%s%s built on %s)\r\n",
|
|
version_get_gitbranch(firmware_version),
|
|
version_get_version(firmware_version),
|
|
version_get_githash(firmware_version),
|
|
version_get_dirty_flag(firmware_version) ? "-dirty" : "",
|
|
version_get_builddate(firmware_version));
|
|
}
|
|
}
|
|
|
|
const CliCommandExternalConfig cli_main_ext_config = {
|
|
.search_directory = "/ext/apps_data/cli/plugins",
|
|
.fal_prefix = "cli_",
|
|
.appid = CLI_APPID,
|
|
};
|