1

Revision:
14:94993ae5b164
Parent:
10:3303cf2867d4
Child:
15:e1c04ec39aa4
--- a/radio_sx127x.cpp	Thu Dec 13 18:10:28 2018 -0800
+++ b/radio_sx127x.cpp	Wed Sep 11 13:20:21 2019 -0700
@@ -205,6 +205,9 @@
 void Radio::dio0isr()
 {
     irqAt = lpt.read_us();
+
+    if (RadioEvents->DioPin_top_half)
+        RadioEvents->DioPin_top_half();
  
     if (pinEvent.txing) {
         /* TxDone handling requires low latency */
@@ -229,6 +232,9 @@
 void Radio::dio1isr()
 {
     pinEvent.dio1 = 1;
+
+    if (RadioEvents->DioPin_top_half)
+        RadioEvents->DioPin_top_half();
 }
 
 void Radio::Init(const RadioEvents_t* e)