[SX127x] Fix automated RFO selection (#1412)
This commit is contained in:
parent
ae65265268
commit
6a96d44b2b
4 changed files with 10 additions and 6 deletions
src/modules/SX127x
|
@ -279,8 +279,9 @@ int16_t SX1272::setOutputPower(int8_t power) {
|
|||
return(this->setOutputPower(power, false));
|
||||
}
|
||||
|
||||
int16_t SX1272::setOutputPower(int8_t power, bool useRfo) {
|
||||
int16_t SX1272::setOutputPower(int8_t power, bool forceRfo) {
|
||||
// check if power value is configurable
|
||||
bool useRfo = (power < 2) || forceRfo;
|
||||
int16_t state = checkOutputPower(power, NULL, useRfo);
|
||||
RADIOLIB_ASSERT(state);
|
||||
|
||||
|
|
|
@ -201,10 +201,11 @@ class SX1272: public SX127x {
|
|||
/*!
|
||||
\brief Sets transmission output power. Allowed values range from -1 to 14 dBm (RFO pin) or +2 to +20 dBm (PA_BOOST pin).
|
||||
\param power Transmission output power in dBm.
|
||||
\param useRfo Whether to use the RFO (true) or the PA_BOOST (false) pin for the RF output.
|
||||
\param forceRfo Whether to force using the RFO pin for the RF output (true)
|
||||
or the lave the selection up to user (false) based on power output.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t setOutputPower(int8_t power, bool useRfo);
|
||||
int16_t setOutputPower(int8_t power, bool forceRfo);
|
||||
|
||||
/*!
|
||||
\brief Check if output power is configurable.
|
||||
|
|
|
@ -293,8 +293,9 @@ int16_t SX1278::setOutputPower(int8_t power) {
|
|||
return(this->setOutputPower(power, false));
|
||||
}
|
||||
|
||||
int16_t SX1278::setOutputPower(int8_t power, bool useRfo) {
|
||||
int16_t SX1278::setOutputPower(int8_t power, bool forceRfo) {
|
||||
// check if power value is configurable
|
||||
bool useRfo = (power < 2) || forceRfo;
|
||||
int16_t state = checkOutputPower(power, NULL, useRfo);
|
||||
RADIOLIB_ASSERT(state);
|
||||
|
||||
|
|
|
@ -213,10 +213,11 @@ class SX1278: public SX127x {
|
|||
\brief Sets transmission output power. Allowed values range from -4 to 15 dBm (RFO pin) or +2 to +17 dBm (PA_BOOST pin).
|
||||
High power +20 dBm operation is also supported, on the PA_BOOST pin.
|
||||
\param power Transmission output power in dBm.
|
||||
\param useRfo Whether to use the RFO (true) or the PA_BOOST (false) pin for the RF output.
|
||||
\param forceRfo Whether to force using the RFO pin for the RF output (true)
|
||||
or the lave the selection up to user (false) based on power output.
|
||||
\returns \ref status_codes
|
||||
*/
|
||||
int16_t setOutputPower(int8_t power, bool useRfo);
|
||||
int16_t setOutputPower(int8_t power, bool forceRfo);
|
||||
|
||||
/*!
|
||||
\brief Check if output power is configurable.
|
||||
|
|
Loading…
Add table
Reference in a new issue