We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following computation method is not parsed correctly
<COMPU-INTERNAL-TO-PHYS> <COMPU-SCALES> <COMPU-SCALE> <LOWER-LIMIT INTERVAL-TYPE="CLOSED">0</LOWER-LIMIT> <UPPER-LIMIT INTERVAL-TYPE="CLOSED">0</UPPER-LIMIT> <COMPU-CONST> <VT>no trailer detected</VT> </COMPU-CONST> </COMPU-SCALE> <COMPU-SCALE> <LOWER-LIMIT INTERVAL-TYPE="CLOSED">1</LOWER-LIMIT> <UPPER-LIMIT INTERVAL-TYPE="CLOSED">1</UPPER-LIMIT> <COMPU-CONST> <VT>trailer detected</VT> </COMPU-CONST> </COMPU-SCALE> <COMPU-SCALE> <SHORT-LABEL>TrailerPresence</SHORT-LABEL> <LOWER-LIMIT INTERVAL-TYPE="CLOSED">0</LOWER-LIMIT> <UPPER-LIMIT INTERVAL-TYPE="CLOSED">0</UPPER-LIMIT> <COMPU-RATIONAL-COEFFS> <COMPU-NUMERATOR> <V>0</V> <V>1</V> </COMPU-NUMERATOR> <COMPU-DENOMINATOR> <V>1</V> </COMPU-DENOMINATOR> </COMPU-RATIONAL-COEFFS> </COMPU-SCALE> </COMPU-SCALES> </COMPU-INTERNAL-TO-PHYS>
canmatrix loads this as
canmatrix
whereas Vector autosar explorer parses this as:
The code here will only parse the value-to-text rule if the upper and lower limit are equal. This means something like this will not work
<COMPU-SCALE> <LOWER-LIMIT INTERVAL-TYPE="CLOSED">0</LOWER-LIMIT> <UPPER-LIMIT INTERVAL-TYPE="CLOSED">100</UPPER-LIMIT> <COMPU-CONST> <VT>Valid range</VT> </COMPU-CONST> </COMPU-SCALE>
The text was updated successfully, but these errors were encountered:
fix first issue #667 (not second one!)
63405e4
Hi @danielhrisca thanks for reporting this issue.
I tried to fix the fist issue in branch feature_667
feature_667
second issue is more complicated. Not sure how to do this elegant in canmatrix, because we for now have no option to store value-tables with ranges
Sorry, something went wrong.
fix first issue #667 (not second one!) (#668)
6f95b7a
fix first issue #667 (not second one!) (#674)
d892f96
No branches or pull requests
First issue
The following computation method is not parsed correctly
canmatrix
loads this aswhereas Vector autosar explorer parses this as:
Second issue
The code here will only parse the value-to-text rule if the upper and lower limit are equal. This means something like this will not work
The text was updated successfully, but these errors were encountered: