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:
81:d288917af0ce
Parent:
64:b721e6ab656a
Child:
82:b93c4169ce41
--- a/sx1276/sx1276.cpp	Thu Aug 03 13:43:35 2017 +0200
+++ b/sx1276/sx1276.cpp	Sat Aug 05 16:08:26 2017 +0200
@@ -949,8 +949,8 @@
         case MODEM_FSK:
             break;
         case MODEM_LORA:
-            if (Read(REG_LR_MODEMSTAT) & RFLR_MODEMSTAT_SIGNAL_DETECTED)
-                return true;
+			if (Read(REG_LR_MODEMSTAT) & (RFLR_MODEMSTAT_SIGNAL_DETECTED|RFLR_MODEMSTAT_SIGNAL_SYNCRONIZED|RFLR_MODEMSTAT_HEADERINFO_VALID|RFLR_MODEMSTAT_MODEM_CLEAR))
+	            return true;
             break;
     }
     return false;