From 5d21da17379f084e570663c02879107efc93c031 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Mon, 31 Jul 2023 01:21:17 +0300 Subject: [PATCH] fix --- applications/drivers/subghz/cc1101_ext/cc1101_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/drivers/subghz/cc1101_ext/cc1101_ext.c b/applications/drivers/subghz/cc1101_ext/cc1101_ext.c index 4e8b395d5..405132a6b 100644 --- a/applications/drivers/subghz/cc1101_ext/cc1101_ext.c +++ b/applications/drivers/subghz/cc1101_ext/cc1101_ext.c @@ -205,7 +205,7 @@ bool subghz_device_cc1101_ext_alloc(SubGhzDeviceConf* conf) { if(conf) { if(conf->ver == SUBGHZ_DEVICE_CC1101_CONFIG_VER) { subghz_device_cc1101_ext->power_amp = conf->power_amp; - subghz_device_cc1101_ext->extended_range = conf->extented_range; + subghz_device_cc1101_ext->extended_range = conf->extended_range; } else { FURI_LOG_E(TAG, "Config version mismatch"); }