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
The socketcan txqueue might run full on fast updates, socketcan_interface does not handle this properly.
A temporary fix is to increase the queue len:
sudo ip link set <NETWORK> txqueuelen 15 # or even higher, default: 10
socketcan_interface should detect the buffer overrun and handle it properly.
Problem: In most case the error is caught in the following read and not in the actual write.
Use async write instead?
The text was updated successfully, but these errors were encountered:
The socketcan txqueue might run full on fast updates, socketcan_interface does not handle this properly.
A temporary fix is to increase the queue len:
socketcan_interface should detect the buffer overrun and handle it properly.
Problem: In most case the error is caught in the following read and not in the actual write.
Use async write instead?
The text was updated successfully, but these errors were encountered: