diff --git a/README.rst b/README.rst index b002352..678763d 100644 --- a/README.rst +++ b/README.rst @@ -79,7 +79,7 @@ To set it to 1000000 use : .. code-block:: python # Initialze RFM radio - rfm9x = adafruit_rfm9x.RFM9x(spi, CS, RESET, RADIO_FREQ_MHZ,baudrate=1000000) + rfm9x = adafruit_rfm9x.RFM9x(spi, CS, RESET, RADIO_FREQ_MHZ, baudrate=1000000) Documentation diff --git a/adafruit_rfm69.py b/adafruit_rfm69.py index 407407f..aadc3d3 100644 --- a/adafruit_rfm69.py +++ b/adafruit_rfm69.py @@ -212,7 +212,7 @@ class RFM69: function to see an example of this--advanced users only! Advanced RadioHead features like address/node specific packets or "reliable datagram" delivery are supported however due to the limitations noted, "reliable datagram" is still subject to missed packets but with it, the - sender is notified if a packe has potentially been missed. + sender is notified if a packet has potentially been missed. """ # Global buffer for SPI commands. @@ -702,7 +702,7 @@ def tx_power(self, val: float): @property def rssi(self) -> float: """The received strength indicator (in dBm). - May be inaccuate if not read immediatey. last_rssi contains the value read immediately + May be inaccurate if not read immediately. last_rssi contains the value read immediately receipt of the last packet. """ # Read RSSI register and convert to value using formula in datasheet.