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
I create a new message, 8 bytes long, in the CAN dbf editor.
The first "signal" should be starting at bit 0, 16 bits long, unsigned int, motorola type.
It doesn't allow it! The error is "end bit of signal is out of message length"
It will allow if it's Intel format. Or if the signal length is reduced to 8 bits.
Then the next signal, which should be starting at bit 16 (or byte 2, bit 0), in fact is sent starting at byte 1.
Am I misunderstanding something basic, or does this just not work?
The text was updated successfully, but these errors were encountered:
when working with motorola type your end bit becomes the start bit for the busmaster and your start bit becomes the end bit.
for example if your signal is 16 bit long and starts at the 0th bit in intel hex you should provide "BYTE Index" to 1 and "Start Bit" to 0. This feature is pretty confusing though I guess we have to work this way for now.
I create a new message, 8 bytes long, in the CAN dbf editor.
The first "signal" should be starting at bit 0, 16 bits long, unsigned int, motorola type.
It doesn't allow it! The error is "end bit of signal is out of message length"
It will allow if it's Intel format. Or if the signal length is reduced to 8 bits.
Then the next signal, which should be starting at bit 16 (or byte 2, bit 0), in fact is sent starting at byte 1.
Am I misunderstanding something basic, or does this just not work?
The text was updated successfully, but these errors were encountered: