I made a fork of a generic library that was developed with support for RFM95 LoRa module that I found online. I Made a few changes and made it compatible with hardware limitations of the MAX32620FTHR and MAX32630FTHR module.

Dependents:   MAX326xxFTHR_LoRa_RFM95 MAX326xxFTHR_LoRa_PingPong MAX326xxFTHR_RFM95_LoRa_PingPong MAX326xxFTHR_LoRa_RFM95_PingPong_Example ... more

Fork of SX1276GenericLib by Helmut Tschemernjak

Revision:
110:e04a263e272d
Parent:
108:3d7cfa8b8519
--- a/sx1276/sx1276-mbed-hal.cpp	Tue Feb 20 14:56:20 2018 +0100
+++ b/sx1276/sx1276-mbed-hal.cpp	Fri May 18 16:40:16 2018 +0200
@@ -116,7 +116,12 @@
         *_tcxo = 0;
         delete (_tcxo);
     }
-    Reset(); // to put chip back into fresh state
+    /*
+     * Reset(); // to put chip back into fresh state
+     * We disabled the Reset() to allow the destructor to keep the
+     * chip in Sleep() mode to stay turned off with little energy 
+     * consumption.
+     */
     delete _reset;
     delete _spi;
     delete _nss;