Fixing changes

This commit is contained in:
Andrea Guglielmini 2019-11-25 19:07:13 +01:00
parent a82002b56e
commit 721f3986a7

View file

@ -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);