I have signal that I want to read, but the sample values don't match the result from vSignalyzer.
I tried to get the signal over the extract_bus_logging function.
The get function has a deprecated variable, ignore_invalid_signals. When adding it back (with an ugly hack, please see below), I retrieve the values as in vSignalyzer.
Setting the parameter raw=True, didn't make any difference.
My goal would be to get invalid signal values, thefore some questions:
Is there a reason why the function is deprecated and will be removed?
Is there some other way to ignore to remove invalid signals?
On which criteria is a signal invalidated?
`
if database_files.get("CAN", None):
out = self._extract_can_logging(
out,
database_files["CAN"],
ignore_value2text_conversion,
prefix,
progress=progress,
ignore_invalid_signals=ignore_invalid_signals
)
Hi,
Using assammdf 7.4.1.
I have signal that I want to read, but the sample values don't match the result from vSignalyzer. I tried to get the signal over the extract_bus_logging function.
The get function has a deprecated variable, ignore_invalid_signals. When adding it back (with an ugly hack, please see below), I retrieve the values as in vSignalyzer.
Setting the parameter raw=True, didn't make any difference.
My goal would be to get invalid signal values, thefore some questions:
`
...
...
`