Skip to content

Commit

Permalink
Merge pull request #513 from Sil333033/subghz_cli_external
Browse files Browse the repository at this point in the history
added external cc1101 module at cli
  • Loading branch information
xMasterX authored Jun 14, 2023
2 parents 2ba1f80 + ee8bbdc commit f078a48
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions applications/main/subghz/subghz_cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,15 @@ static void subghz_cli_command_chat(Cli* cli, FuriString* args) {
static void subghz_cli_command(Cli* cli, FuriString* args, void* context) {
FuriString* cmd = furi_string_alloc();

// Enable power for External CC1101 if it is connected
furi_hal_subghz_enable_ext_power();
// Auto switch to internal radio if external radio is not available
furi_delay_ms(15);
if(!furi_hal_subghz_check_radio()) {
furi_hal_subghz_select_radio_type(SubGhzRadioInternal);
furi_hal_subghz_init_radio_type(SubGhzRadioInternal);
}

do {
if(!args_read_string_and_trim(args, cmd)) {
subghz_cli_command_print_usage();
Expand Down Expand Up @@ -835,6 +844,11 @@ static void subghz_cli_command(Cli* cli, FuriString* args, void* context) {
subghz_cli_command_print_usage();
} while(false);

// Disable power for External CC1101 if it was enabled and module is connected
furi_hal_subghz_disable_ext_power();
// Reinit SPI handles for internal radio / nfc
furi_hal_subghz_init_radio_type(SubGhzRadioInternal);

furi_string_free(cmd);
}

Expand Down

0 comments on commit f078a48

Please sign in to comment.