mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-25 22:32:29 +03:00
SubGHz: properly working with missing external driver (#2821)
This commit is contained in:
parent
88f8f68e29
commit
e7bd547d05
@ -552,7 +552,10 @@ bool subghz_txrx_radio_device_is_external_connected(SubGhzTxRx* instance, const
|
|||||||
subghz_txrx_radio_device_power_on(instance);
|
subghz_txrx_radio_device_power_on(instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
is_connect = subghz_devices_is_connect(subghz_devices_get_by_name(name));
|
const SubGhzDevice* device = subghz_devices_get_by_name(name);
|
||||||
|
if(device) {
|
||||||
|
is_connect = subghz_devices_is_connect(device);
|
||||||
|
}
|
||||||
|
|
||||||
if(!is_otg_enabled) {
|
if(!is_otg_enabled) {
|
||||||
subghz_txrx_radio_device_power_off(instance);
|
subghz_txrx_radio_device_power_off(instance);
|
||||||
|
Loading…
Reference in New Issue
Block a user