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.cpp	Sun Feb 24 20:00:29 2019 +0100
+++ b/main.cpp	Tue Feb 26 08:57:21 2019 +0100
@@ -19,7 +19,7 @@
 volatile int pressedCount;
 
 void switchInput(void) {
-	InterrruptMSG(INT_BUTTON1);
+	InterruptMSG(INT_BUTTON1);
 }
 
 void timerUpdate(void) {
@@ -29,7 +29,7 @@
 	else
     	timeout.attach_us(&timerUpdate, 2000000); // setup to call timerUpdate after 2 seconds
 
-	InterrruptMSG(INT_TIMEOUT);
+	InterruptMSG(INT_TIMEOUT);
 }