【发布时间】:2022-06-19 07:36:44
【问题描述】:
Vector CANalyzer 处于离线模式。回放 CAN 记录,并使用 CAPL 脚本处理以快速识别感兴趣的区域。有许多 CAN 记录可供分析。如果找到感兴趣的区域,则打印当前记录文件名和文件中的时间位置,以写入窗口:
on message Frame_of_Interest
{
if( this.rpm > 0 )
{
if( this.torque == 0 )
{
write("HIT in file %s at location %s", logging filename, time location);
}
}
}
非常感谢任何帮助。
【问题讨论】: