This website requires JavaScript.
Explore
Help
Sign In
ARMmbed
/
mbed-os
mirror of
https://github.com/ARMmbed/mbed-os.git
Watch
1
Star
0
Fork
You've already forked mbed-os
0
Code
Issues
Projects
Releases
Wiki
Activity
45afbf6bf3
mbed-os
/
features
/
minimal-printf
/
README.md
265 B
Raw
Blame
History
Minimal printf
Prints directly to stdio/UART without using malloc. Doesn't support any modifiers.
Supports:
%d: signed long int
%u: unsigned long int
%p: void* (e.g. 0x00123456)
%s: string
%X: unsigned char printed as hexadecimal number (e.g., FF)