This driver is a stripped down version of the Radiohead 1.45 driver, and covers fewer radios. Threading and an event queue have been added to make the ISR's more stable across architectures. Specifically The STM32L4 parts

Dependents:   Threaded_LoRa_Modem

Files at this revision

API Documentation at this revision

Comitter:
rlanders73
Date:
Wed Jun 23 15:53:12 2021 +0000
Parent:
6:20187dafd325
Commit message:
explicitly not disabling interrupts for mbed

Changed in this revision

RadioHead.h Show annotated file Show diff for this revision Revisions of this file
--- a/RadioHead.h	Tue Jun 22 20:25:10 2021 +0000
+++ b/RadioHead.h	Wed Jun 23 15:53:12 2021 +0000
@@ -723,7 +723,7 @@
  #define ATOMIC_BLOCK_START unsigned int __status = INTDisableInterrupts(); {
  #define ATOMIC_BLOCK_END } INTRestoreInterrupts(__status);
 #else 
- // TO BE DONE:
+ // Disabling interrupts not working for your OS (like mbed)
  #define ATOMIC_BLOCK_START
  #define ATOMIC_BLOCK_END
 #endif