Closed
Description
That's because size_t Print::print(const String &s)
calls write
for each char, instead that using String internal buffer
and len
attributes
Using them directly makes print 12 times faster (as measured by Silverstrino)
That's because size_t Print::print(const String &s)
calls write
for each char, instead that using String internal buffer
and len
attributes
Using them directly makes print 12 times faster (as measured by Silverstrino)