-
I have a system that cares about the padding sent to it and it uses the OBD-II protocol, so iso-tp messages. I am able to send messages and they are padded with 0x00 but I would like to change that to 0xFF. Any way to do this from the scripting interface? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
No, in fact currently the padding byte is always hard coded to 0 everywhere. That's certainly not correct behavior. If it were hard coded it should be either 0xAA or 0xCC not 0 or 0xFF. So, this will have to be fixed. |
Beta Was this translation helpful? Give feedback.
-
I added support for this to the QT6WIP build. Now you can put a line like this: isotp.setPaddingByte(0xFF); to make the padding byte FF instead. The default is now also 0xAA if nothing else is specified. As of yet the rest of the program does not provide any means of setting the padding byte. |
Beta Was this translation helpful? Give feedback.
-
With the latest build I am having a crashing issue when i try to load or save a script. I also get some other errors on startup. Have any ideas? |
Beta Was this translation helpful? Give feedback.
-
Can you set the padding byte for UDS as well? |
Beta Was this translation helpful? Give feedback.
I added support for this to the QT6WIP build. Now you can put a line like this:
isotp.setPaddingByte(0xFF);
to make the padding byte FF instead. The default is now also 0xAA if nothing else is specified. As of yet the rest of the program does not provide any means of setting the padding byte.