[SX127x] Added parameter doc and keyword

This commit is contained in:
jgromes 2024-11-03 18:27:51 +01:00
parent cb45f4fe5e
commit fe52311371
3 changed files with 3 additions and 2 deletions
keywords.txt
src/modules
RF69
SX127x

View file

@ -197,6 +197,7 @@ randomByte KEYWORD2
getPacketLength KEYWORD2 getPacketLength KEYWORD2
setFifoEmptyAction KEYWORD2 setFifoEmptyAction KEYWORD2
clearFifoEmptyAction KEYWORD2 clearFifoEmptyAction KEYWORD2
setFifoThreshold KEYWORD2
setFifoFullAction KEYWORD2 setFifoFullAction KEYWORD2
clearFifoFullAction KEYWORD2 clearFifoFullAction KEYWORD2
fifoAdd KEYWORD2 fifoAdd KEYWORD2

View file

@ -652,7 +652,7 @@ class RF69: public PhysicalLayer {
\brief Set FIFO threshold level. \brief Set FIFO threshold level.
Be aware that threshold is also set in setFifoFullAction method. Be aware that threshold is also set in setFifoFullAction method.
setFifoThreshold method must be called AFTER calling setFifoFullAction! setFifoThreshold method must be called AFTER calling setFifoFullAction!
\param Threshold level. \param threshold Threshold level in bytes.
*/ */
void setFifoThreshold(uint8_t threshold); void setFifoThreshold(uint8_t threshold);

View file

@ -765,7 +765,7 @@ class SX127x: public PhysicalLayer {
\brief Set FIFO threshold level. \brief Set FIFO threshold level.
Be aware that threshold is also set in setFifoFullAction method. Be aware that threshold is also set in setFifoFullAction method.
setFifoThreshold method must be called AFTER calling setFifoFullAction! setFifoThreshold method must be called AFTER calling setFifoFullAction!
\param Threshold level. \param threshold Threshold level in bytes.
*/ */
void setFifoThreshold(uint8_t threshold); void setFifoThreshold(uint8_t threshold);