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

Files at this revision

API Documentation at this revision

Comitter:
Helmut Tschemernjak
Date:
Wed Apr 10 15:34:50 2019 +0200
Parent:
52:c6f8d0db1334
Child:
54:28ed5c68e5f6
Commit message:
Fixed SDA spelling, added SSD1306 display

Changed in this revision

PinMap.h Show annotated file Show diff for this revision Revisions of this file
--- a/PinMap.h	Fri Mar 29 13:32:29 2019 +0000
+++ b/PinMap.h	Wed Apr 10 15:34:50 2019 +0200
@@ -58,14 +58,17 @@
 #define P_PA_2_TX	PA_2	// available only when no debug serial console is being used
 #define P_PA_15_RX	PA_15	// available only when no debug serial console is being used
 #define	P_PA_9_SCL	PA_9	// SCL includes 10k removable hardware pullup
-#define P_PA_10_SCA	PA_10	// SCL includes 10k removable hardware pullup
+#define P_PA_10_SDA	PA_10	// SCL includes 10k removable hardware pullup
 #define	P_PB_4		PB_4
 #define P_PB_5		PB_5
 #define P_PB_6		PB_6
 #define	P_PB_7		PB_7
 
-#define SI7021_SCA	P_PA_10_SCA
+#define SI7021_SDA	P_PA_10_SDA
 #define SI7021_SCL	P_PA_9_SCL
+#define SSD1306_ADDRESS 0x3c
+#define SSD1306_SDA P_PA_10_SDA
+#define SSD1306_SCL P_PA_9_SCL
 
 #define WatchDogUpdate() void()