Skip to content

Commit

Permalink
2x UL Upd SubBrute & All Other SubGHz
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Apr 24, 2023
1 parent e3a9423 commit bda53e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ This software is for experimental purposes only and is not meant for any illegal

## Latest Updates - [PATREON: Latest Release RM0423-1538-0.81.2-994045c](https://www.patreon.com/RogueMaster?filters[tag]=Latest%20Release)

- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md) and in [commits](https://github.com/DarkFlippers/unleashed-firmware/commits/dev): `2023-04-23 15:38 EST`
- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2023-04-23 15:38 EST`
- Last Synced/Checked Unleashed, changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md) and in [commits](https://github.com/DarkFlippers/unleashed-firmware/commits/dev): `2023-04-23 20:55 EST`
- Last Synced/Checked OFW, changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2023-04-23 20:55 EST`
- OFW: [cubewb: updated to v1.16.0 #2595 (By hedger)](https://github.com/flipperdevices/flipperzero-firmware/pull/2595)
- Updated: [Scope (By anfractuosity)](https://github.com/anfractuosity/flipperscope) to allow firmware compile
- Updated: Bad USB is now a FAP again
Expand Down Expand Up @@ -61,6 +61,8 @@ This software is for experimental purposes only and is not meant for any illegal
- UL: scripts: storage: fixed exception handler for paths
- UL: [RFID: More user-friendly RAW emulation (By dcaprita)](https://forum.flipperzero.one/t/electra-intercom/6368/43)
- Added: [Wifi Mapping (By carvilsi)](https://github.com/carvilsi/flipper0-wifi-map/tree/main) `Req: ESP32`
- UL: SubGHz Fix external radio SPI handlers
- UL: Updated: [Sub-GHz Bruteforcer v3.5 (By Ganapati/xMasterX/derskythe)](https://github.com/derskythe/flipperzero-subbrute/tree/master)

<a name="release">

Expand Down
5 changes: 4 additions & 1 deletion applications/external/subbrute/subbrute.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ int32_t subbrute_app(void* p) {
// 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);
furi_hal_subghz_select_radio_type(SubGhzRadioInternal);
furi_hal_subghz_init_radio_type(SubGhzRadioInternal);
}

furi_hal_power_suppress_charge_enter();
Expand All @@ -195,6 +196,8 @@ int32_t subbrute_app(void* p) {
furi_hal_power_suppress_charge_exit();
// 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);

subbrute_free(instance);

Expand Down

0 comments on commit bda53e1

Please sign in to comment.