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
It is known that formatting, and deriving Debug, adds bloat to the binary. Since this library is targeting embedded devices, we should not derive Debug, unless we are on std.
Derive Debug only when on std or when log feature is enabled.
Derive defmt::Format when defmt feature is enabled.
The text was updated successfully, but these errors were encountered:
It is known that formatting, and deriving
Debug
, adds bloat to the binary. Since this library is targeting embedded devices, we should not deriveDebug
, unless we are onstd
.Debug
only when onstd
or whenlog
feature is enabled.defmt::Format
whendefmt
feature is enabled.The text was updated successfully, but these errors were encountered: