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 41:ace9b25f571b, committed 2019-02-15
- Comitter:
- Helmut Tschemernjak
- Date:
- Fri Feb 15 09:58:47 2019 +0100
- Parent:
- 40:46374c762e37
- Child:
- 42:6f83ba18bcea
- Commit message:
- added proper include order
Changed in this revision
| utils.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/utils.cpp Wed Feb 13 17:10:45 2019 +0100 +++ b/utils.cpp Fri Feb 15 09:58:47 2019 +0100 @@ -4,10 +4,10 @@ */ #include "main.h" #include "GenericPingPong.h" +#include "RadioTest.h" #ifdef TOOLCHAIN_GCC #include <malloc.h> #endif -#include "RadioTest.h" volatile uint32_t PendingInterrupts; // global interrupt mask of received interrupts
Helmut Tschemernjak