Driver library for SX1272/SX1276 transceivers

Dependents:   LORA_RX LORA_TX WindConcentrator hid_test ... more

/media/uploads/dudmuck/lora.png

Driver library for SX1272 and SX1276 radio transceivers.

This device uses CSS modulation to provide much improved link budget. The RF hardware is same as in FSK devices, just with added LoRa spread-spectrum modem.

This library provides functions to configure radio chip and transmit & receive packets.

Using This Library

Library function service_radio() must be called continuously from main loop, to service interrupts from radio.

/media/uploads/dudmuck/sx1272rf1_connector_300.jpg

Board Specific implementation

FunctionPointer for rf_switch callback allows the program to implement control of RF switch unique to their board. Example options are:

  • SKY13373 for external power amplifier implementation. Requires two DigitalOut pins.
  • SKY13350 using PA_BOOST. requires two DigitalOut pins.
  • PE4259-63: controlled directly by radio chip, no software function needed. However, in the case of SX1276MB1xAS, the RXTX pin on IO2 should be driven by this callback function when R16 is installed (without R15) on this shield board.

Some configurations may need to force the use of RFO or PA_BOOST, or a board could offer both options. The rf_switch function pointer callback should support the implementation choice on the board.

further reading

Revision:
4:d987ac2836bf
Parent:
3:3bf2515b1eed
Child:
6:5d94ee847016
Child:
7:927a05f84ede
diff -r 3bf2515b1eed -r d987ac2836bf sx127x_lora.cpp
--- a/sx127x_lora.cpp	Fri May 02 01:18:59 2014 +0000
+++ b/sx127x_lora.cpp	Fri May 02 23:35:30 2014 +0000
@@ -319,7 +319,7 @@
         
     // radio doesnt provide FhssChangeChannel with channel=0 for TX    
     if (RegHopPeriod > 0)
-        m_xcvr.write_reg_u24(REG_FRFMSB, m_xcvr.frfs[0]);
+        m_xcvr.write_u24(REG_FRFMSB, m_xcvr.frfs[0]);
         
     m_xcvr.set_opmode(RF_OPMODE_TRANSMITTER);
 }
@@ -343,7 +343,7 @@
     
     // shouldn't be necessary, radio should provide FhssChangeChannel with channel=0 for RX  
     if (RegHopPeriod > 0)
-        m_xcvr.write_reg_u24(REG_FRFMSB, m_xcvr.frfs[0]);
+        m_xcvr.write_u24(REG_FRFMSB, m_xcvr.frfs[0]);
     
     m_xcvr.set_opmode(RF_OPMODE_RECEIVER);
 }
@@ -375,7 +375,7 @@
     if (m_xcvr.RegDioMapping1.bits.Dio1Mapping == 1) {
         if (m_xcvr.dio1) {
             RegHopChannel.octet = m_xcvr.read_reg(REG_LR_HOPCHANNEL);    
-            m_xcvr.write_reg_u24(REG_FRFMSB, m_xcvr.frfs[RegHopChannel.bits.FhssPresentChannel]);
+            m_xcvr.write_u24(REG_FRFMSB, m_xcvr.frfs[RegHopChannel.bits.FhssPresentChannel]);
             printf("hopch:%d\r\n", RegHopChannel.bits.FhssPresentChannel);
             RegIrqFlags.octet = 0;
             RegIrqFlags.bits.FhssChangeChannel = 1;
@@ -393,7 +393,7 @@
             RegIrqFlags.octet = m_xcvr.read_reg(REG_LR_IRQFLAGS);  // save flags
             RegHopChannel.octet = m_xcvr.read_reg(REG_LR_HOPCHANNEL);
             if (RegIrqFlags.bits.FhssChangeChannel) {
-                m_xcvr.write_reg_u24(REG_FRFMSB, m_xcvr.frfs[RegHopChannel.bits.FhssPresentChannel]);
+                m_xcvr.write_u24(REG_FRFMSB, m_xcvr.frfs[RegHopChannel.bits.FhssPresentChannel]);
             }
             //printf("[%02x]", RegIrqFlags.octet);
             m_xcvr.write_reg(REG_LR_IRQFLAGS, RegIrqFlags.octet); // clear flags in radio