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
Right now we always assume that a radio message will be 255 bytes and 64 bytes for a CAN message. This should change to optimize our data transmission sizes. Two options: heap allocation (bad) or just switch the message type to decide what the size is. I'm more a fan of not using heap allocation as it can be costly and potentially unsafe.
The text was updated successfully, but these errors were encountered:
Right now we always assume that a radio message will be 255 bytes and 64 bytes for a CAN message. This should change to optimize our data transmission sizes. Two options: heap allocation (bad) or just switch the message type to decide what the size is. I'm more a fan of not using heap allocation as it can be costly and potentially unsafe.
The text was updated successfully, but these errors were encountered: