Closed doodeca closed 11 months ago
Hello @doodeca,
Thank you for your report. In order to support GCC11, we need to update the sysmem.c and syscall.c files in all STM32CubeIDE projects. The fix will be available in the next release.
With regards,
Hi @doodeca,
Issue fixed in the frame of release 1.5.2. Thank you for your report.
With regards,
When building STM32CubeG4 examples using STM32CubeIDE Version 1.13.2, I get the following error: 'unknown type name 'caddr_t' ' in
[example]/STM32CubeIDE/Application/User/sysmem.c:63:1
Including
<sys/types.h>
fixes the error. However,caddr_t
is an obsolete typedef. It's recommended to replace these withvoid*
.