diff --git a/src/modules/CC1101/CC1101.h b/src/modules/CC1101/CC1101.h index bb245cbe..558519c2 100644 --- a/src/modules/CC1101/CC1101.h +++ b/src/modules/CC1101/CC1101.h @@ -928,14 +928,7 @@ class CC1101: public PhysicalLayer { */ int16_t setEncoding(uint8_t encoding) override; - /*! - \brief Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. - When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! - - \param rxEn RX enable pin. - - \param txEn TX enable pin. - */ + /*! \copydoc Module::setRfSwitchPins */ void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn); /*! diff --git a/src/modules/RF69/RF69.h b/src/modules/RF69/RF69.h index 979f4845..e799b716 100644 --- a/src/modules/RF69/RF69.h +++ b/src/modules/RF69/RF69.h @@ -1010,14 +1010,7 @@ class RF69: public PhysicalLayer { */ int16_t setRSSIThreshold(float dbm); - /*! - \brief Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. - When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! - - \param rxEn RX enable pin. - - \param txEn TX enable pin. - */ + /*! \copydoc Module::setRfSwitchPins */ void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn); /*! diff --git a/src/modules/SX126x/SX126x.h b/src/modules/SX126x/SX126x.h index b56bcb29..0c8d1756 100644 --- a/src/modules/SX126x/SX126x.h +++ b/src/modules/SX126x/SX126x.h @@ -914,14 +914,7 @@ class SX126x: public PhysicalLayer { */ int16_t setEncoding(uint8_t encoding) override; - /*! - \brief Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. - When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! - - \param rxEn RX enable pin. - - \param txEn TX enable pin. - */ + /*! \copydoc Module::setRfSwitchPins */ void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn); /*! diff --git a/src/modules/SX127x/SX127x.h b/src/modules/SX127x/SX127x.h index 302fabf4..4d68a2fa 100644 --- a/src/modules/SX127x/SX127x.h +++ b/src/modules/SX127x/SX127x.h @@ -1141,14 +1141,7 @@ class SX127x: public PhysicalLayer { */ int8_t getTempRaw(); - /*! - \brief Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. - When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! - - \param rxEn RX enable pin. - - \param txEn TX enable pin. - */ + /*! \copydoc Module::setRfSwitchPins */ void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn); /*! diff --git a/src/modules/SX128x/SX128x.h b/src/modules/SX128x/SX128x.h index c367013f..854ef06a 100644 --- a/src/modules/SX128x/SX128x.h +++ b/src/modules/SX128x/SX128x.h @@ -809,14 +809,7 @@ class SX128x: public PhysicalLayer { */ int16_t setEncoding(uint8_t encoding) override; - /*! - \brief Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. - When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! - - \param rxEn RX enable pin. - - \param txEn TX enable pin. - */ + /*! \copydoc Module::setRfSwitchPins */ void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn); /*! diff --git a/src/modules/Si443x/Si443x.h b/src/modules/Si443x/Si443x.h index cf4f689b..e3218c68 100644 --- a/src/modules/Si443x/Si443x.h +++ b/src/modules/Si443x/Si443x.h @@ -785,14 +785,7 @@ class Si443x: public PhysicalLayer { */ int16_t setDataShaping(uint8_t sh) override; - /*! - \brief Some modules contain external RF switch controlled by two pins. This function gives RadioLib control over those two pins to automatically switch Rx and Tx state. - When using automatic RF switch control, DO NOT change the pin mode of rxEn or txEn from Arduino sketch! - - \param rxEn RX enable pin. - - \param txEn TX enable pin. - */ + /*! \copydoc Module::setRfSwitchPins */ void setRfSwitchPins(RADIOLIB_PIN_TYPE rxEn, RADIOLIB_PIN_TYPE txEn); /*!