User Activity

I have a custom board running the i cube lrwan (class A). I m going to deploy it in the field, so I dont want any messages coming on the UART. Is there a way to disable it ?When I add too many print statements for debugging, the LoRa Initialisations ...
I have a custom board with STM32 microcontroller and SX1261 Radio Module. I am familiar with I-CUBE-LRWAN from ST Micro. I used the I-CUBE-LRWAN Package in a Nucleo Board and it is working fine. I understand that I need to create a new BSP if using c...
msp.c has a callback definitionvoid HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) { HW_GPIO_IrqHandler(GPIO_Pin); }it.c has the followingvoid EXTI4_15_IRQHandler(void) { HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_4); HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_5); ...