我已经编写了一个基本程序以在 CAPL 中发送 UDS 消息,但我不知道如何在 testcase 函数中获取响应。
下面是代码片段
includes
{
}
variables
{
message 0x639 read;
}
void maintest()
{
tc1();
}
testCase tc1()
{
read.dlc=0x08;
read.byte(0)=0X02;
read.byte(1)=0x10;
read.byte(2)=0x03;
output(read);
testStepPass("OK");
}