Hello,
today I found (IMHO) a small error in circle_api.h:
The function "char* UTIL_GetVersion( void )" is there defined as:
#define UTIL_GetVersion() (u32) (((tCircleFunc0) ...
shouldn't it be:
#define UTIL_GetVersion() (const char*) (((tCircleFunc0) ...
It doesn't bother as long as you don't include <string.h>, because then it throws a warning if you use the Application.c skeleton.
-Klaus