Question
compilation error after update to V 1.13.0
Since the latest update to STM32Cube V 1.13.0 I get an error during compilation of sysmem.c:
error: unknown type name 'caddr_t'
The reason seems to be a missing path to sys/types.h. At least adding#include <sys/types.h>
to my code solves the problem.But I don't like editing system code.Is there any better solution?