embeddedartistry / arduino-printf

Add printf support to the Arduino SDK
MIT License
91 stars 15 forks source link

Change approach to mimic old mpaland/printf behavior #28

Closed phillipjohnston closed 2 years ago

phillipjohnston commented 2 years ago

This avoids the need to deal with compiler optimizations, because we treat the standard library function names as macros and instead use the library version, disabling any unhelpful compiler wizardry.

Fixes #27