Fork of SX1276 library, with setLowDataRateOptimize() function added to configure "Low Datarate Optimize" setting of chip.

Dependents:   SX1276_terminal SX1276_Semtech_GUI

Fork of SX127x by wayne roberts

Revision:
3:3bf2515b1eed
Parent:
2:fdae76e1215e
Child:
8:8db8fc2ea650
--- a/sx127x_lora.h	Wed Apr 30 22:49:43 2014 +0000
+++ b/sx127x_lora.h	Fri May 02 01:18:59 2014 +0000
@@ -136,7 +136,7 @@
 class SX127x_lora {
     public:
         //SX127x_lora(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName rst, PinName dio_0, PinName dio_1, PinName fem_ctx, PinName fem_cps);
-        SX127x_lora(SX127x r);
+        SX127x_lora(SX127x& r);
         
         ~SX127x_lora();
         
@@ -211,6 +211,6 @@
         RegTest31_t         RegTest31;              // 0x31
         
     private:
-        SX127x m_xcvr;
+        SX127x& m_xcvr;
         void set_nb_trig_peaks(int);                                                         
 };