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

Dependencies:   mbed

Revision:
30:c58316bab0fb
Parent:
29:b48f6176c2cd
Child:
31:174c745f921c
--- a/LoRa/lora_driver.c	Fri Nov 02 23:39:52 2018 +0000
+++ b/LoRa/lora_driver.c	Mon Dec 10 19:38:11 2018 +0000
@@ -420,18 +420,18 @@
         		// Inidicate Join status using LED
 				GPIO_InitTypeDef GPIO_InitStruct;
     			
-    			GPIO_InitStruct.Pin = GPIO_PIN_7;
-    			GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
-    			GPIO_InitStruct.Pull = GPIO_NOPULL;
-    			HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
-    			
     			GPIO_InitStruct.Pin = GPIO_PIN_6;
     			GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
     			GPIO_InitStruct.Pull = GPIO_NOPULL;
     			HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
     			
-    			HAL_GPIO_WritePin(GPIOA, GPIO_PIN_7, GPIO_PIN_SET);
+    			GPIO_InitStruct.Pin = GPIO_PIN_7;
+    			GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
+    			GPIO_InitStruct.Pull = GPIO_NOPULL;
+    			HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
+    			
     			HAL_GPIO_WritePin(GPIOB, GPIO_PIN_6, GPIO_PIN_SET);
+    			HAL_GPIO_WritePin(GPIOC, GPIO_PIN_7, GPIO_PIN_SET);
     			 
         		DBG_PRINTF("Nwk Joined\n");