An example project for the Heltec Turtle LoRa board (STM32L4 and SX1276 chips). The projects is only supported for the Nucleo-L432KC board platform in the mbed online and offline compiler environment. Visit www.radioshuttle.de (choose Turtle board) for instructions. Note that most source files and libraries are open source, however some files especially the RadioShuttle core protocol is copyrighted work. Check header for details.

Dependencies:   mbed BufferedSerial SX1276GenericLib OLED_SSD1306 HELIOS_Si7021 NVProperty RadioShuttle-STM32L4 USBDeviceHT

Revision:
47:59a9923a9f77
Parent:
45:22bb680cad5a
Child:
50:28166f6fdaa2
--- a/main.h	Sun Feb 24 20:00:29 2019 +0100
+++ b/main.h	Tue Feb 26 08:57:21 2019 +0100
@@ -14,7 +14,7 @@
 #include "mbed-util.h"
 
 
-enum InterrruptDevice {
+enum InterruptDevice {
     INT_BUTTON1 = 0x01,	// user button
     INT_UNUSED1 = 0x02,
     INT_UNUSED2 = 0x04,
@@ -23,7 +23,7 @@
 };
 
 extern volatile uint32_t PendingInterrupts;
-extern void InterrruptMSG(enum InterrruptDevice irqid);
+extern void InterruptMSG(enum InterruptDevice irqid);
 extern uint32_t readclrPendingInterrupts(void);
 extern uint32_t readPendingInterrupts(void);