Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-09-16 16:42:21 +0300
committerGitHub <noreply@github.com>2021-09-16 16:42:21 +0300
commitb4ffc1f81b264a2a47e8943aad2c1b8730f18133 (patch)
tree23ed6abc969e6a38c4ce3145b73614a36aae86b8 /applications/cli
parent4f233ff0a31f30ac03328040d756b79ccfe53ab0 (diff)
[FL-1817] Add firmware target in device_info (#708)
Diffstat (limited to 'applications/cli')
-rw-r--r--applications/cli/cli_commands.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/applications/cli/cli_commands.c b/applications/cli/cli_commands.c
index 17539e0e..616808e0 100644
--- a/applications/cli/cli_commands.c
+++ b/applications/cli/cli_commands.c
@@ -61,6 +61,7 @@ void cli_command_device_info(Cli* cli, string_t args, void* context) {
const Version* firmware_version = furi_hal_version_get_firmware_version();
if(firmware_version) {
printf("firmware_version : %s\r\n", version_get_version(firmware_version));
+ printf("firmware_target : %s\r\n", version_get_target(firmware_version));
printf("firmware_commit : %s\r\n", version_get_githash(firmware_version));
printf("firmware_branch : %s\r\n", version_get_gitbranch(firmware_version));
printf("firmware_build_date : %s\r\n", version_get_builddate(firmware_version));