User Activity

Just used the example application "LoRaWan_End_Node" with the Nucleo-WLWL55JC board.This example send every 10seconds data to a gateway which is received in the TheThingsNetwork environment. Default is "LoRaWan_End_Node" disabled, when "USE_FULL_ASSE...
I trace this back to the call tmp_hal_status = ADC_Enable(hadc) in HAL_ADC_START_DMA() in stm32h7xx_hal_adc.c.When I look into ADC_Enable(), I see comment about a workaround. There is waited for ADC_ENABLE_TIMEOUT. But with the settings I use, this A...
How to obtain version information of used packedge at runtime.In cube config file it can be looked up (for example V1.8.0), but how to get it runtime in code?
Controller H743Zi (nucleo-H743ZI2)STM32CubeIde : 1.4.2Cube V1.8.0cache: enableddcache: enabledSeperate RAM Section with cache/dcachedisabled by MPU regionFreeRtos: CMSIS V1 10.21 / 1.02// methode 1uint8_t buffer[100]; //MPU region cache/dcache disabl...
I connect PC6 with PC7 to get a loopback on my evaluation board.I add the following code:do{ memset( aRxBuffer, 0x00, sizeof(aRxBuffer)); if(HAL_UART_Receive_DMA(&UartHandle, (uint8_t *)aRxBuffer, RXBUFFERSIZE) != HAL_OK)   {    Error_Handler();   ...