From 22cf19dcef35011b321475507325842f4ef3ff3d Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Fri, 5 Apr 2024 06:42:05 +0300 Subject: [PATCH] format --- applications/drivers/subghz/cc1101_ext/cc1101_ext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/drivers/subghz/cc1101_ext/cc1101_ext.c b/applications/drivers/subghz/cc1101_ext/cc1101_ext.c index f109b3cf9..56273d63e 100644 --- a/applications/drivers/subghz/cc1101_ext/cc1101_ext.c +++ b/applications/drivers/subghz/cc1101_ext/cc1101_ext.c @@ -181,7 +181,7 @@ static bool subghz_device_cc1101_ext_check_init(void) { } furi_hal_gpio_init( subghz_device_cc1101_ext->g0_pin, GpioModeAnalog, GpioPullNo, GpioSpeedLow); - + // Reset GDO2 (!TX/RX) to floating state cc1101_status = cc1101_write_reg( subghz_device_cc1101_ext->spi_bus_handle, CC1101_IOCFG2, CC1101IocfgHighImpedance); @@ -189,7 +189,7 @@ static bool subghz_device_cc1101_ext_check_init(void) { //timeout or error break; } - + // Go to sleep cc1101_status = cc1101_shutdown(subghz_device_cc1101_ext->spi_bus_handle); if(cc1101_status.CHIP_RDYn != 0) {