User Activity

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...