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
Please let me know what changes need to be done in the current program to get the desired output as mentioned above.
The text was updated successfully, but these errors were encountered:
supersports999
changed the title
When 8 bytes CAN Frame is sent, the output is coming properly on CAN interface
When 8 bytes CAN Frame is sent, the output is not coming properly on CAN interface
May 20, 2016
In the current program implementation you are sending 4bytes can frame & incrementing the DATA..
Say,
can0 07B [4] 00 00 00 01
can0 07B [4] 00 00 00 02
can0 07B [4] 00 00 00 03
& so on..
When i changed the frame length to 8 bytes the output is coming as below
can0 07B [8] 00 00 00 01 01 00 00 00
can0 07B [8] 00 00 00 02 02 00 00 00
can0 07B [8] 00 00 00 03 03 00 00 00
I expect the output as below
can0 07B [8] 00 00 00 00 00 00 00 01
can0 07B [8] 00 00 00 00 00 00 00 02
can0 07B [8] 00 00 00 00 00 00 00 03
Please let me know what changes need to be done in the current program to get the desired output as mentioned above.
The text was updated successfully, but these errors were encountered: