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
My understanding of SAE J1939-21 is that BAM is not limited to PDU1 with DA as 255.
Changed :
def send_pgn(self, data_page, pdu_format, pdu_specific, priority, src_address, data):
to:
def send_pgn(self, data_page, pdu_format, pdu_specific, priority, src_address, data, *destination_address):
then only check to see if destination_address is not vs pdu_specific as 255
This change of course breaks all old implementations. A new method would be the most desirable.
The text was updated successfully, but these errors were encountered:
I too ran into this.
Sorry, something went wrong.
Seems like you already have this solved, may I suggest to create a Pull Request for this fix?
No branches or pull requests
My understanding of SAE J1939-21 is that BAM is not limited to PDU1 with DA as 255.
Changed :
def send_pgn(self, data_page, pdu_format, pdu_specific, priority, src_address, data):
to:
def send_pgn(self, data_page, pdu_format, pdu_specific, priority, src_address, data, *destination_address):
then only check to see if destination_address is not vs pdu_specific as 255
This change of course breaks all old implementations. A new method would be the most desirable.
The text was updated successfully, but these errors were encountered: