We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def receive_messages():
ecu = j1939.ElectronicControlUnit() ecu.connect(bustype='pcan', channel='PCAN_USBBUS1', bitrate=250000) ecu.subscribe(on_message, 0xFA) time.sleep(0.5) ecu.disconnect() return received_messages
With code above only global messages will be received. Messages with destination address 0xFA will not be received.
The text was updated successfully, but these errors were encountered:
i have added support for simple peer-to-peer reception, see eb2e4e2 normally peer-to-peer reception is done by controller-applications
Sorry, something went wrong.
No branches or pull requests
def receive_messages():
With code above only global messages will be received. Messages with destination address 0xFA will not be received.
The text was updated successfully, but these errors were encountered: