Fixup doxygen comments (#1089)
This commit is contained in:
parent
b336dd59f9
commit
63ef9e0977
3 changed files with 22 additions and 5 deletions
|
@ -766,7 +766,14 @@ class LR11x0: public PhysicalLayer {
|
|||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t standby(uint8_t mode, bool wakeup = true);
|
||||
|
||||
|
||||
/*!
|
||||
\brief Sets the module to sleep mode. To wake the device up, call standby().
|
||||
Overload with warm start enabled for PhysicalLayer compatibility.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t sleep();
|
||||
|
||||
/*!
|
||||
\brief Sets the module to sleep mode. To wake the device up, call standby().
|
||||
\param retainConfig Set to true to retain configuration of the currently active modem ("warm start")
|
||||
|
@ -774,9 +781,6 @@ class LR11x0: public PhysicalLayer {
|
|||
\param sleepTime Sleep duration (enables automatic wakeup), in multiples of 30.52 us. Ignored if set to 0.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
|
||||
int16_t sleep();
|
||||
|
||||
int16_t sleep(bool retainConfig, uint32_t sleepTime);
|
||||
|
||||
// interrupt methods
|
||||
|
|
|
@ -545,6 +545,13 @@ class SX126x: public PhysicalLayer {
|
|||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t scanChannel(uint8_t symbolNum, uint8_t detPeak, uint8_t detMin);
|
||||
|
||||
/*!
|
||||
\brief Sets the module to sleep mode. To wake the device up, call standby().
|
||||
Overload with warm start enabled for PhysicalLayer compatibility.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t sleep();
|
||||
|
||||
/*!
|
||||
\brief Sets the module to sleep mode. To wake the device up, call standby().
|
||||
|
@ -552,7 +559,6 @@ class SX126x: public PhysicalLayer {
|
|||
or to false to discard current configuration ("cold start"). Defaults to true.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t sleep();
|
||||
int16_t sleep(bool retainConfig);
|
||||
|
||||
/*!
|
||||
|
|
|
@ -457,6 +457,13 @@ class SX128x: public PhysicalLayer {
|
|||
*/
|
||||
int16_t scanChannel() override;
|
||||
|
||||
/*!
|
||||
\brief Sets the module to sleep mode. To wake the device up, call standby().
|
||||
Overload for PhysicalLayer compatibility.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t sleep();
|
||||
|
||||
/*!
|
||||
\brief Sets the module to sleep mode. To wake the device up, call standby().
|
||||
\param retainConfig Set to true to retain configuration and data buffer or to false
|
||||
|
|
Loading…
Add table
Reference in a new issue