AVR-GCC: char *itoa (int __val, char *__s, int __radix)
XC16: char *itoa (auto int value, auto char *s);
on XC16 i dont have a way to use this function with a radix.
Is there a way to convert a byte (integer) to:
binary
hex
octal
and put it..
↧