From a519a242d65c941ca87e0fe03b6fdb794a733627 Mon Sep 17 00:00:00 2001 From: gid9798 <30450294+gid9798@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:37:08 +0300 Subject: [PATCH] SubRem Config internal module by default --- .../subghz_remote_configurator/helpers/txrx/subghz_txrx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/external/subghz_remote_configurator/helpers/txrx/subghz_txrx.c b/applications/external/subghz_remote_configurator/helpers/txrx/subghz_txrx.c index 581c6db5c..e4309dcad 100644 --- a/applications/external/subghz_remote_configurator/helpers/txrx/subghz_txrx.c +++ b/applications/external/subghz_remote_configurator/helpers/txrx/subghz_txrx.c @@ -62,10 +62,10 @@ SubGhzTxRx* subghz_txrx_alloc() { instance->worker, (SubGhzWorkerPairCallback)subghz_receiver_decode); subghz_worker_set_context(instance->worker, instance->receiver); - //set default device External + //set default device Internal subghz_devices_init(); instance->radio_device_type = - subghz_txrx_radio_device_set(instance, SubGhzRadioDeviceTypeExternalCC1101); + subghz_txrx_radio_device_set(instance, SubGhzRadioDeviceTypeInternal); return instance; }