-
Notifications
You must be signed in to change notification settings - Fork 414
Convert kcd to DBC: No "GenMsgCycleTime" records #847
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
Comments
Hi @MamoruAsagami
|
I should have said 'Convert kcd to DBC: No "GenMsgCycleTime" records when Message elements don't have triggered attribute.' |
thanks for clearification, so we don't need to have the "triggered" attribute to know it's a cyclic message. We should only look at the "interval" attribute. |
Hopefully fixed in branch: |
I confirmed the problem was solved in the branch issue_847. Since I'm not sure if I am eligible to "Close with comment", I simply "Comment." |
#fixed with pr #849 |
When you convert from .kcd to .dbc, message cycle time info is lost.
Message cycle times are coded as Message.interval as in <Message ... interval="100"> in .kcd, which should be transformed as below in .dbc.
BA_DEF_ BO_ "GenMsgCycleTime" INT 0 0;
BA_DEF_DEF_ "GenMsgCycleTime" 0;
BA_ "GenMsgCycleTime" BO_ <can id 1> 100;
BA_ "GenMsgCycleTime" BO_ <can id 2> 50;
...
The text was updated successfully, but these errors were encountered: