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
Instead of moving node.message to char sendbuffer[], pass node.message by reference to send() and sendWithRetry() to save space consumed by sendbuffer[].
61 bytes can be saved.
At the same time, we need to take care because in networkMode, if sendbuffer[] is eliminated, node.message will be modified and user won't be aware of this, leading to unexpected behaviour for the user.
The text was updated successfully, but these errors were encountered:
This enhancement could save 61 bytes of RAM, but needs detailed analysis before making this switch to ensure no unexpected behaviour takes place at user's end due to this change.
This issue will be dealt with in next tag / release.
Instead of moving node.message to char sendbuffer[], pass node.message by reference to send() and sendWithRetry() to save space consumed by sendbuffer[].
61 bytes can be saved.
At the same time, we need to take care because in networkMode, if sendbuffer[] is eliminated, node.message will be modified and user won't be aware of this, leading to unexpected behaviour for the user.
The text was updated successfully, but these errors were encountered: