Update subbrute

This commit is contained in:
Willy-JL
2023-03-28 11:07:50 +01:00
parent f0d0835399
commit 2d6d34fd46
2 changed files with 1 additions and 1 deletions

View File

@@ -3,7 +3,6 @@ App(
name="Sub-GHz Bruteforcer",
apptype=FlipperAppType.EXTERNAL,
entry_point="subbrute_app",
cdefines=["APP_SUB_BRUTE"],
requires=["gui", "dialogs"],
stack_size=2 * 1024,
order=11,

View File

@@ -183,6 +183,7 @@ int32_t subbrute_app(void* p) {
// 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_set_radio_type(SubGhzRadioInternal);
}