Skip to content

Commit 5e050c4

Browse files
authored
Merge pull request #54 from vladak/spelling_1
fix spelling/style
2 parents cb78e6d + 3187852 commit 5e050c4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ To set it to 1000000 use :
7979
.. code-block:: python
8080
8181
# Initialze RFM radio
82-
rfm9x = adafruit_rfm9x.RFM9x(spi, CS, RESET, RADIO_FREQ_MHZ,baudrate=1000000)
82+
rfm9x = adafruit_rfm9x.RFM9x(spi, CS, RESET, RADIO_FREQ_MHZ, baudrate=1000000)
8383
8484
8585
Documentation

adafruit_rfm69.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ class RFM69:
212212
function to see an example of this--advanced users only! Advanced RadioHead features like
213213
address/node specific packets or "reliable datagram" delivery are supported however due to the
214214
limitations noted, "reliable datagram" is still subject to missed packets but with it, the
215-
sender is notified if a packe has potentially been missed.
215+
sender is notified if a packet has potentially been missed.
216216
"""
217217

218218
# Global buffer for SPI commands.
@@ -702,7 +702,7 @@ def tx_power(self, val: float):
702702
@property
703703
def rssi(self) -> float:
704704
"""The received strength indicator (in dBm).
705-
May be inaccuate if not read immediatey. last_rssi contains the value read immediately
705+
May be inaccurate if not read immediately. last_rssi contains the value read immediately
706706
receipt of the last packet.
707707
"""
708708
# Read RSSI register and convert to value using formula in datasheet.

0 commit comments

Comments
 (0)