Linux is asking for SocketCAN ISO-TP console connector #4123

This commit is contained in:
rusefillc 2022-05-10 07:36:33 -04:00
parent a43d02a0a3
commit 2d37491c37
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class SocketCANIoStream extends AbstractIoStream {
socket.bind(canInterface);
socket.configureBlocking(true); // we want reader thread to wait for messages
socket.setOption(RECV_OWN_MSGS, true);
socket.setOption(RECV_OWN_MSGS, false);
} catch (IOException e) {
throw new IllegalStateException("Error looking up", e);
}