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:
30:8bc655c9b224
Parent:
22:9cca40fcb25e
Child:
33:617765dcce6c
--- a/utils.cpp	Mon Feb 11 10:48:30 2019 +0000
+++ b/utils.cpp	Mon Feb 11 11:12:33 2019 +0000
@@ -209,6 +209,11 @@
 }
 
 
+void dump(const char *title, void *data, int len)
+{
+	dump(title, data,  len, false);
+}
+
 void dump(const char *title, const void *data, int len, bool dwords)
 {
     dprintf("dump(\"%s\", 0x%x, %d bytes)", title, (unsigned int)data, len);