Hello ST I have a project where I need to start and stop the UART during runtime, and I have noticed a possible bug in the stm32f3xx_hal_uart.c file. The issue is that when initializing the UART to...
The net effect of this bug is that the reference code (including the Templates for LRUN and XIP) never actually enable the Memory Protection Unit regions. See: stm32h7rsxx_hal_cortex.c Line 532...
Sorry for asking an obvious question... LWIP documentation describes a udp_pcb as "Creates a new UDP pcb which can be used for UDP communication." https://lwip.fandom.com/wiki/Raw/UDP When connect...
I have a working project that simply writes to a a file on an SD card (Using STM32H7B3I-DK, Not Using RTOS). When I add it to a touchgfx project, f_mount() and f_open() return NO_FILE_SYSTEM. This h...
Hi All, I need some help ,I am pulling my hair out , I declare a buffer of 40 Bytes uint8_t myBuffer[40]= {0}; I then read a nunber of bytes from an EEPROM over SPI ,I have ...
Hi, I'm running into problems registering USB interfaces on STM32G0B1KBU6. The same code works fine on STM32F1*, STM32F7*, and STM32G4*. Environment: latest STM32CubeIDE (v.1.13.2) @ Wind...
I want to make Websocket Client in STM32CUBEIDE and I am using NUCLEO-H755ZI-Q Board, I have completed the Program with Ethernet, LWP and FREERTOS.I would like to know if it is possible to implement ...
I need to have USB PD connectivity so I am using the examples provided. There are SNK and SRC and DRP examples. However, they all use the TCPP which is also included in all of the 3 demo boards. I do...
I am using the STM32H7B3I-DK for my project. I am trying to integrate uSD card usage with a touchgfx program. I have gotten a simple write to a file working on a non rtos project; however, when ...
I have followed How to create a file system on a SD card using STM32CubeIDE the best I can using the STM32H7B3I-DK. With this board I do not see the DMA tab under SDMMC1, so I have ski...