User Activity

HAL_UART_Receive(&huart2, (uint8_t*)msgToTransmit, MESSAGE_SIZE, HAL_MAX_DELAY);   int index = 0; for (index = 0; index < MESSAGE_SIZE; index++) { PRINTF("\n\rmsg to transmit is hex: %x", msgToTransmit[index]); PRINTF("\n\rmsg to transmit is c...
Hi all,I am modifing the Ping Pong example of the I-CUBE-LRWAN; I am working with a L073RZ nucleo board and the SX1272MB2xAS LoRa shield.I was performing some experiment (changing spreading factor, code rate, bandwidth) and the example with SF = 11 a...