User Activity

I have a 1 second loop that tries to mount the SD card, It repeatedly calls f_mount() until an SD is detected, however, I've noticed that there is a semaphore created each time f_mount() is called which is not deleted in HEAP_1 mode. So after some ti...
I've been working with an F7 processor, using RTOS with the FATFS and an SD card in 4bit mode on SDMMC1.STM32CubeIDE V1.8STM32CubeMX V6.4.0Within the sd_diskio.c file there is the following option to enable D-Cache maintenance when D-Cache is used:/*...
*** EDIT ***Seems this was a memory issue rather than a D-Cache issue, the D-Cache option fixed it as a side effect!*** EDIT ***I have a project setup as follows:STM32F765IIKxRTOSSD Card on SDMMC1 configured as SD 4 bits Wide, DMA EnabledI followed t...
I'm using the NUCLEO-H753ZI dev board and have been testing various tx/rx reception modes using HAL routines with RTOS for all the available uarts. I have them all working well except lpuart1. When I try to receive or transmit in DMA mode I get no in...
The code generator is inserting the DMA_Init() and BDMA_Init functions in the wrong place, leaving DMA not working unless I manually move them after every call code generator run.I place them in the USER CODE segment above the INIT segment then remov...