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
Received messages are currently stored in a block pool, whereas transmit messages are copied around (into queue, out of queue, to CAN FIFO). Transmit messages could also be put into the block pool to reduce copying.
Requirements
Add rtcan_msg_alloc() function to allocate memory for a message.
Replace existing message creations with rtcan_msg_alloc().
Pass pointers to created message through transmit queue.
Free messages after transmission.
The text was updated successfully, but these errors were encountered:
Description
Received messages are currently stored in a block pool, whereas transmit messages are copied around (into queue, out of queue, to CAN FIFO). Transmit messages could also be put into the block pool to reduce copying.
Requirements
rtcan_msg_alloc()
function to allocate memory for a message.rtcan_msg_alloc()
.The text was updated successfully, but these errors were encountered: