Is there a way to automate BLF to CSV conversion in Vector CANoe?
问题 My first approach was using python-can (as it added support for parsing BLF files with 2.0.0 release) like this: import can filename = "logfile.blf" logging = can.BLFReader(filename) for msg in logging: print(msg) but that resulted in an error that I reported to the developer. BLF format is proprietary and somewhat secret so I understand supporting it in an open-source library can be problematic. So then I looked into doing it using a solution provided by Vector : COM , but so far haven't