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, committed 2019-02-11
- Comitter:
- Helmut64
- Date:
- Mon Feb 11 11:12:33 2019 +0000
- Parent:
- 29:f32df9900d99
- Child:
- 31:4d68bd5fd507
- Commit message:
- Moved dump to util.cpp
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| utils.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Mon Feb 11 10:48:30 2019 +0000
+++ b/main.cpp Mon Feb 11 11:12:33 2019 +0000
@@ -124,9 +124,3 @@
}
}
}
-
-
-void dump(const char *title, void *data, int len)
-{
- dump(title, data, len, false);
-}
--- 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);
Helmut Tschemernjak