2005-02-07 01:12 AM
2005-02-04 03:56 AM
Hello,
I using a dk3300-ELCD, and i forced to visualize into my ELCD display an unsigned int can you help me??? sorry for this stupid problem ... but i'm a novice thanks2005-02-07 01:12 AM
Hi, try with this
void itoa8(PM_u16 ItoaAux) { char Str[STR2 + 1]; PM_u16 n=ItoaAux; int i,resto; for (i=STR2; i>=0; i--) { resto=n%10; Str[i] = resto+'0'; n/=10; } Str[STR2 + 1]='\0'; }