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:
37:77fa81e4ad79
Parent:
22:9cca40fcb25e
Child:
45:22bb680cad5a
--- a/main.h	Wed Feb 13 14:08:15 2019 +0100
+++ b/main.h	Wed Feb 13 14:10:17 2019 +0100
@@ -32,7 +32,10 @@
 extern USBSerialBuffered *usb;
 #endif
 extern bool _useDprintf;
-extern void InitSerial(int timeout, DigitalOut *led);  
+extern void InitSerial(int timeout, DigitalOut *led);
+extern void RunStartup(void);
+extern size_t MemoryAvailable(bool print);
+
 extern void dump(const char *title, const void *data, int len, bool dwords = false);
 extern const char *BatterySource(void);
 
@@ -42,4 +45,5 @@
 extern char *ConsoleReadline(char *buf, int buflen, bool echo, int timeout_ms = 0);
 extern void NVPropertyEditor(void);
 extern void MCUReset(void);
+extern void RunCommands(int timeout_ms);