You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mbed_tracef implementation will spend excessive time trying to calculate trace length, then formatting it to a buffer, then finally printing it out. Implementations like tinyprintf avoid that and output directly. Can we do it better?
The text was updated successfully, but these errors were encountered:
RomanSaveljev
changed the title
Eliminate buffering, while building a trace line
Eliminate buffering of formatted trace line
May 28, 2016
The
mbed_tracef
implementation will spend excessive time trying to calculate trace length, then formatting it to a buffer, then finally printing it out. Implementations like tinyprintf avoid that and output directly. Can we do it better?The text was updated successfully, but these errors were encountered: