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
One way we can reduce the build size is to add support to disable
Serial.print(), Serial.println() or anything to do with Serial.print.
This can save additional space. I have seen this code on the web and it does the trick I tested it works.
One way we can reduce the build size is to add support to disable
Serial.print(), Serial.println() or anything to do with Serial.print.
This can save additional space. I have seen this code on the web and it does the trick I tested it works.
Then in the use case:
becomes:
However it needs support in the Framework so we can turn Serial printing
ON/OFF
through desiredfeatures.ini
or theplatform.ini
.There is significant Serial print in the framework we could save that and user has option to turn
ON/OFF
like we do other features.If there are libraries that can do that without large footprint the better. I just liked the simplicity of that approach.
The text was updated successfully, but these errors were encountered: