Skip to content
New issue

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

When 8 bytes CAN Frame is sent, the output is not coming properly on CAN interface #3

Closed
supersports999 opened this issue May 20, 2016 · 1 comment

Comments

@supersports999
Copy link

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.

@supersports999 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
@GBert GBert closed this as completed May 30, 2016
@GBert
Copy link
Owner

GBert commented May 30, 2016

Could you show me your code, please ?
Do you use can2eth ? All other code here is M*rklin secific ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants