Merge pull request #453 from nseidle/master
Correct typos in explicit/implicitHeader functions.
This commit is contained in:
commit
79cde7c0f6
4 changed files with 11 additions and 8 deletions
|
@ -146,6 +146,9 @@ setFHSSHoppingPeriod KEYWORD2
|
||||||
getFHSSHoppingPeriod KEYWORD2
|
getFHSSHoppingPeriod KEYWORD2
|
||||||
getFHSSChannel KEYWORD2
|
getFHSSChannel KEYWORD2
|
||||||
clearFHSSInt KEYWORD2
|
clearFHSSInt KEYWORD2
|
||||||
|
randomByte KEYWORD2
|
||||||
|
getPacketLength KEYWORD2
|
||||||
|
|
||||||
|
|
||||||
# RF69-specific
|
# RF69-specific
|
||||||
setAESKey KEYWORD2
|
setAESKey KEYWORD2
|
||||||
|
|
|
@ -829,6 +829,8 @@ class SX126x: public PhysicalLayer {
|
||||||
/*!
|
/*!
|
||||||
\brief Set implicit header mode for future reception/transmission.
|
\brief Set implicit header mode for future reception/transmission.
|
||||||
|
|
||||||
|
\param len Payload length in bytes.
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
int16_t implicitHeader(size_t len);
|
int16_t implicitHeader(size_t len);
|
||||||
|
@ -836,8 +838,6 @@ class SX126x: public PhysicalLayer {
|
||||||
/*!
|
/*!
|
||||||
\brief Set explicit header mode for future reception/transmission.
|
\brief Set explicit header mode for future reception/transmission.
|
||||||
|
|
||||||
\param len Payload length in bytes.
|
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
int16_t explicitHeader();
|
int16_t explicitHeader();
|
||||||
|
|
|
@ -278,7 +278,9 @@ class SX1272: public SX127x {
|
||||||
int16_t autoLDRO();
|
int16_t autoLDRO();
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\brief Set implicit header mode for future reception/transmission.
|
\brief Set implicit header mode for future reception/transmission. Required for spreading factor 6.
|
||||||
|
|
||||||
|
\param len Payload length in bytes.
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
|
@ -287,8 +289,6 @@ class SX1272: public SX127x {
|
||||||
/*!
|
/*!
|
||||||
\brief Set explicit header mode for future reception/transmission.
|
\brief Set explicit header mode for future reception/transmission.
|
||||||
|
|
||||||
\param len Payload length in bytes.
|
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
int16_t explicitHeader();
|
int16_t explicitHeader();
|
||||||
|
|
|
@ -287,7 +287,9 @@ class SX1278: public SX127x {
|
||||||
int16_t autoLDRO();
|
int16_t autoLDRO();
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\brief Set implicit header mode for future reception/transmission.
|
\brief Set implicit header mode for future reception/transmission. Required for spreading factor 6.
|
||||||
|
|
||||||
|
\param len Payload length in bytes.
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
|
@ -296,8 +298,6 @@ class SX1278: public SX127x {
|
||||||
/*!
|
/*!
|
||||||
\brief Set explicit header mode for future reception/transmission.
|
\brief Set explicit header mode for future reception/transmission.
|
||||||
|
|
||||||
\param len Payload length in bytes.
|
|
||||||
|
|
||||||
\returns \ref status_codes
|
\returns \ref status_codes
|
||||||
*/
|
*/
|
||||||
int16_t explicitHeader();
|
int16_t explicitHeader();
|
||||||
|
|
Loading…
Add table
Reference in a new issue