From 08a884cfb8cae99a8507bfee0d47ef3fdb317d38 Mon Sep 17 00:00:00 2001 From: Crsarmv7l <85343771+Crsarmv7l@users.noreply.github.com> Date: Tue, 28 Jan 2025 17:15:08 +0100 Subject: [PATCH] Fix another typo --- src/modules/CC1101/CC1101.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/CC1101/CC1101.cpp b/src/modules/CC1101/CC1101.cpp index b52958b5..c737493f 100644 --- a/src/modules/CC1101/CC1101.cpp +++ b/src/modules/CC1101/CC1101.cpp @@ -285,7 +285,7 @@ int16_t CC1101::startTransmit(const uint8_t* data, size_t len, uint8_t addr) { do{ fifoBytes = SPIgetRegValue(RADIOLIB_CC1101_REG_TXBYTES, 6, 0); prevFifobytes = SPIgetRegValue(RADIOLIB_CC1101_REG_TXBYTES, 6, 0); - } while (fifoBytes != prevFifobytes) + } while (fifoBytes != prevFifobytes); //If there is room add more data to the FIFO if (fifoBytes < RADIOLIB_CC1101_FIFO_SIZE) {