A demo application for HXC900 LoRaWAN module using Nucleo-L053R8.

Dependencies:   mbed

Revision:
19:0c90e38fc9c5
Parent:
17:e682a18c3914
Child:
21:f1d561ed31a1
--- a/LoRa/lora_driver.c	Tue Sep 04 17:27:02 2018 +0000
+++ b/LoRa/lora_driver.c	Thu Sep 13 15:29:47 2018 +0000
@@ -445,6 +445,7 @@
 {
 	// Use a random delay to avoid synchronized join request from all LoRa node after power up
 	uint32_t joinDelay = (HAL_RNG_GetRandomNumber(&RngHandle) % JOIN_SEND_DELAY_MAX) + 1;
+	
 	TimerStart( &JoinRequestTimer, joinDelay);
 }