Typo (copy paste) fix in comments
authorNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 11 Jun 2020 19:09:00 +0000 (21:09 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:05 +0000 (17:03 +0100)
include/extdrv/cc1101.h

index b366f9a..f5496d2 100644 (file)
@@ -99,7 +99,7 @@ struct cc1101_status_regs {
        uint8_t packet_status; /* 0x38 - PKTSTATUS - Current GDOx status and packet status */
        uint8_t pll_calibration;  /* 0x39 - VCO_VC_DAC - Current setting from PLL calibration module */
        uint8_t tx_bytes;      /* 0x3A - TXBYTES - Underflow and number of bytes in the TX FIFO */
-       uint8_t rx_bytes;      /* 0x3B - RXBYTES - Overrflow and number of bytes in the TX FIFO */
+       uint8_t rx_bytes;      /* 0x3B - RXBYTES - Overrflow and number of bytes in the RX FIFO */
        uint8_t rc_calib_status[2];  /* 0x3C .. 0x3D - RCCTRL1_STATUS .. RCCTRL0_STATUS - Last RC oscillator calibration result */
 } __attribute__((packed));
 #define CC1101_STATUS(x)   (((uint8_t)offsetof(struct cc1101_status_regs, x)) + (0x70))