File tree 2 files changed +3
-2
lines changed
Projects/Multi/Applications/LoRa/AT_Slave/src
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ int main(void)
260
260
HW_Init ();
261
261
262
262
/* Configure Debug mode */
263
- DBG_Init ();
263
+ // DBG_Init();
264
264
265
265
/* USER CODE BEGIN 1 */
266
266
CMD_Init ();
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ void HW_GpioInit(void)
310
310
GPIO_InitStruct .Mode = GPIO_MODE_ANALOG ;
311
311
GPIO_InitStruct .Pull = GPIO_NOPULL ;
312
312
/* All GPIOs except debug pins (SWCLK and SWD) */
313
- HW_GPIO_Init (GPIOA , GPIO_PIN_All & (~( GPIO_PIN_13 | GPIO_PIN_14 )) , & GPIO_InitStruct );
313
+ HW_GPIO_Init (GPIOA , GPIO_PIN_All , & GPIO_InitStruct );
314
314
315
315
/* All GPIOs */
316
316
HW_GPIO_Init (GPIOB , GPIO_PIN_All , & GPIO_InitStruct );
@@ -529,6 +529,7 @@ static void HW_IoDeInit(void)
529
529
HW_GPIO_Init (RADIO_NSS_PORT , RADIO_NSS_PIN , & initStruct );
530
530
531
531
Radio .IoDeInit ();
532
+ HW_SPI_IoDeInit ();
532
533
//vcom_IoDeInit();
533
534
}
534
535
You can’t perform that action at this time.
0 commit comments