Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix recieved -> received typos #817

Merged
merged 1 commit into from
Dec 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions RF24.h
Original file line number Diff line number Diff line change
Expand Up @@ -1396,12 +1396,12 @@ class RF24 {
/**
* Enable or disable the auto-acknowledgement feature for all pipes. This
* feature is enabled by default. Auto-acknowledgement responds to every
* recieved payload with an empty ACK packet. These ACK packets get sent
* received payload with an empty ACK packet. These ACK packets get sent
* from the receiving radio back to the transmitting radio. To attach an
* ACK payload to a ACK packet, use writeAckPayload().
*
* If this feature is disabled on a transmitting radio, then the
* transmitting radio will always report that the payload was recieved
* transmitting radio will always report that the payload was received
* (even if it was not). Please remember that this feature's configuration
* needs to match for transmitting and receiving radios.
*
Expand All @@ -1428,15 +1428,15 @@ class RF24 {
/**
* Enable or disable the auto-acknowledgement feature for a specific pipe.
* This feature is enabled by default for all pipes. Auto-acknowledgement
* responds to every recieved payload with an empty ACK packet. These ACK
* responds to every received payload with an empty ACK packet. These ACK
* packets get sent from the receiving radio back to the transmitting
* radio. To attach an ACK payload to a ACK packet, use writeAckPayload().
*
* Pipe 0 is used for TX operations, which include sending ACK packets. If
* using this feature on both TX & RX nodes, then pipe 0 must have this
* feature enabled for the RX & TX operations. If this feature is disabled
* on a transmitting radio's pipe 0, then the transmitting radio will
* always report that the payload was recieved (even if it was not).
* always report that the payload was received (even if it was not).
* Remember to also enable this feature for any pipe that is openly
* listening to a transmitting radio with this feature enabled.
*
Expand Down Expand Up @@ -1559,8 +1559,8 @@ class RF24 {
* Request (IRQ) pin active LOW.
* The following events can be configured:
* 1. "data sent": This does not mean that the data transmitted was
* recieved, only that the attempt to send it was complete.
* 2. "data failed": This means the data being sent was not recieved. This
* received, only that the attempt to send it was complete.
* 2. "data failed": This means the data being sent was not received. This
* event is only triggered when the auto-ack feature is enabled.
* 3. "data received": This means that data from a receiving payload has
* been loaded into the RX FIFO buffers. Remember that there are only 3
Expand Down