Fixing changes
This commit is contained in:
parent
a82002b56e
commit
721f3986a7
1 changed files with 5 additions and 5 deletions
|
@ -422,21 +422,21 @@ class nRF24: public PhysicalLayer {
|
||||||
int16_t setCrcFiltering(bool crcOn = true);
|
int16_t setCrcFiltering(bool crcOn = true);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\brief Enable or disable auto-acknowlede packets
|
\brief Enable or disable auto-acknowlede packets on all pipes
|
||||||
|
|
||||||
\param crcOn Enable (true) or disable (false) auto-acks.
|
\param autoAckOn Enable (true) or disable (false) auto-acks.
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
int16_t setAutoAck(bool autoAckOn = true);
|
int16_t setAutoAck(bool autoAckOn = true);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\brief Enable or disable auto-acknowlede packets
|
\brief Enable or disable auto-acknowlede packets on given pipe.
|
||||||
|
|
||||||
\param crcOn Enable (true) or disable (false) auto-acks.
|
|
||||||
|
|
||||||
\param pipeNum Number of pipe to which enable / disable auto-acks.
|
\param pipeNum Number of pipe to which enable / disable auto-acks.
|
||||||
|
|
||||||
|
\param autoAckOn Enable (true) or disable (false) auto-acks.
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
int16_t setAutoAck(uint8_t pipeNum, bool autoAckOn = true);
|
int16_t setAutoAck(uint8_t pipeNum, bool autoAckOn = true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue