Hi All, urgently need to find a cut version of printf, no need float point support. Only need to print out of integers in hex and decimal format. Using vprintf didn't give using RAM size reduction. Thanks, Vladimir
"Only need to print out of integers in hex and decimal format." In that case, it's probably worth just writing your own two functions: print_hex_int() and print_dec_int()
Hi Andy, thank you, I thought about that too. I'm just too lazy to do updating my projects, probably I would make it as the last resort.