STM32F769I DISCO
I have STM32F769I DISCO discovery boardI am unable to find a simple code to display text on LCD
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
I have STM32F769I DISCO discovery boardI am unable to find a simple code to display text on LCD
How do I get a non-HAL project going but with CMSIS for a STM32F051? I've seen a few references describing how to add various folders containing the required files to the projects build settings. The problem for me is the folders described do not exi...
Hello everyone,I am encountering an issue with the HAL_Delay() function and ThreadX in my project. Before initializing ThreadX, HAL_Delay() works as expected. Specifically, the callback function:void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *h...
Hi everyone,I'm working on a project based on the following STM32H7 LwIP example:https://github.com/stm32-hotspot/STM32H7-LwIP-Examples/tree/main/STM32H747_Disco_M7_ETHIn addition to the Ethernet functionality, I’ve enabled the SAI peripheral with DM...
I managed to create a working example ethernet NetXDuo project for the nucleo-h753zi board based of this guide:https://community.st.com/t5/stm32-mcus/creating-a-dual-ipv6-amp-ipv4-netxduo-udp-application-for/ta-p/570521See my repository here:https://...
Hi,On the keynote speech, I saw that FreeRTOS will be the main kernel.Does that mean that ThreadX will not be offered as an alternative?What is the reason for this change?What about NetXDuo as a middleware?I am quite happy with how ThreadX and its co...
Everything else is working fine.Setup packet with SET_ADDRESS received and processed.Next GET_DESCRIPTOR for DEVICE which is sent back ok I've verified the data written to the Tx FIFO is correct.Correct number of bytes it transmitted but the bytes ar...
Good afternoonI am working on the STM32H755 and am dealing with the retransmissions from my CAN FD periphery. According to the ISO-11898-1:2024 standard, the number of retransmissions should be configurable:"- from 0 (no retransmission),- to at least...
I've got the NUCLEO-G491RE board and have it connected to my PC over the only USB port which is of course also used for the debugger. Both printf() and HAL_UART_Transmit() work to send data to a terminal program on the PC, but I can't use polling for...
I'm setting up the ADC in "manual continuous" mode where hadc1.Init.ContinuousConvMode = DISABLE and then I call HAL_ADC_Start_IT() inside of HAL_ADC_ConvCpltCallback(). I get the first call to HAL_ADC_ConvCpltCallback and calling HAL_ADC_Start_IT()...