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 25:8578fed9087e, committed 2019-02-06
- Comitter:
- Helmut64
- Date:
- Wed Feb 06 16:28:55 2019 +0000
- Parent:
- 24:4286db0c6ad8
- Child:
- 27:11e5b3bd3805
- Commit message:
- Update with new dump function
Changed in this revision
| RadioShuttle-STM32L4.lib | Show annotated file Show diff for this revision Revisions of this file |
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/RadioShuttle-STM32L4.lib Wed Feb 06 15:28:40 2019 +0000 +++ b/RadioShuttle-STM32L4.lib Wed Feb 06 16:28:55 2019 +0000 @@ -1,1 +1,1 @@ -https://os.mbed.com/users/Helmut64/code/RadioShuttle-STM32L4/#0c31756924a2 +https://os.mbed.com/users/Helmut64/code/RadioShuttle-STM32L4/#50e8a3c35d1f
--- a/main.cpp Wed Feb 06 15:28:40 2019 +0000
+++ b/main.cpp Wed Feb 06 16:28:55 2019 +0000
@@ -124,3 +124,9 @@
}
}
}
+
+
+void dump(const char *title, void *data, int len)
+{
+ dump(title, data, len, false);
+}
Helmut Tschemernjak