Skip to content

Commit

Permalink
[FL-1817] Add firmware target in device_info (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
skotopes authored Sep 16, 2021
1 parent 4f233ff commit b4ffc1f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions applications/cli/cli_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit b4ffc1f

Please sign in to comment.