This library update contains changes according to the HW-modification.

Dependents:   LoRaWAN_Serial_port_driven_and_configurable_ELMO_based_on_TxRx_Template

Fork of SX1272lib by Espotel

Changes compared to original SX1272lib:

HW modification was made to remove RFO-output and replaced with PABOOST-output. PASELECT changed accordingly.

Files at this revision

API Documentation at this revision

Comitter:
KosTee
Date:
Fri Oct 07 11:35:50 2016 +0000
Parent:
12:a3b1b64969b0
Commit message:
RFO & PABOOST transmit modification has been done to some devices.; Selection can be made on sx1272-hal.cpp.; The new transmit route is currently commented on sx1272-hal.cpp, cause majority of devices still use the old route.;

Changed in this revision

sx1272/sx1272-hal.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r a3b1b64969b0 -r 1af18cdef696 sx1272/sx1272-hal.cpp
--- a/sx1272/sx1272-hal.cpp	Mon Jun 27 11:28:17 2016 +0000
+++ b/sx1272/sx1272-hal.cpp	Fri Oct 07 11:35:50 2016 +0000
@@ -132,7 +132,8 @@
 
 uint8_t SX1272BRD::GetPaSelect( uint32_t channel )
 {
-	return RF_PACONFIG_PASELECT_RFO;
+	return RF_PACONFIG_PASELECT_RFO; //Default
+	//return RFLR_PACONFIG_PASELECT_PABOOST; // This modification was done to HW. Default RF0 has been removed from some devices.
 }
 
 void SX1272BRD::SetAntSwLowPower( bool status )