Merge pull request #453 from nseidle/master

Correct typos in explicit/implicitHeader functions.
pull/458/head
Jan Gromeš 2022-01-29 08:36:18 +01:00 zatwierdzone przez GitHub
commit 79cde7c0f6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
4 zmienionych plików z 11 dodań i 8 usunięć

Wyświetl plik

@ -146,6 +146,9 @@ setFHSSHoppingPeriod KEYWORD2
getFHSSHoppingPeriod KEYWORD2
getFHSSChannel KEYWORD2
clearFHSSInt KEYWORD2
randomByte KEYWORD2
getPacketLength KEYWORD2
# RF69-specific
setAESKey KEYWORD2

Wyświetl plik

@ -829,6 +829,8 @@ class SX126x: public PhysicalLayer {
/*!
\brief Set implicit header mode for future reception/transmission.
\param len Payload length in bytes.
\returns \ref status_codes
*/
int16_t implicitHeader(size_t len);
@ -836,8 +838,6 @@ class SX126x: public PhysicalLayer {
/*!
\brief Set explicit header mode for future reception/transmission.
\param len Payload length in bytes.
\returns \ref status_codes
*/
int16_t explicitHeader();

Wyświetl plik

@ -278,7 +278,9 @@ class SX1272: public SX127x {
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
*/
@ -287,8 +289,6 @@ class SX1272: public SX127x {
/*!
\brief Set explicit header mode for future reception/transmission.
\param len Payload length in bytes.
\returns \ref status_codes
*/
int16_t explicitHeader();

Wyświetl plik

@ -287,7 +287,9 @@ class SX1278: public SX127x {
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
*/
@ -296,8 +298,6 @@ class SX1278: public SX127x {
/*!
\brief Set explicit header mode for future reception/transmission.
\param len Payload length in bytes.
\returns \ref status_codes
*/
int16_t explicitHeader();