Trying to initialize array to NULL, gives Link error (Undefined : "__clear")
char ip_string[16] = {0};
anything wrong?. thanks.
The compiler is using a runtime library function to clear this array. So you have to link with the proper library. Sorry I'm not knownig CF by heart, so basically I would recommend to check where __clear comes from in a default wizard generated project.
Daniel