_DoIP_VehicleIdentificationCompleteInd
Valid for: CANoe DE NotePlease use only the CAPL functions described under Example. Only the functions described are guaranteed to work with the callback.
void _DoIP_VehicleIdentificationCompleteInd();
void _DoIP_VehicleIdentificationCompleteInd()
{
write( "[%.3f] _DoIP_VehicleIdentificationCompleteInd, %d vehicles found", timenow()/100000.0, gVehiclesFound);
if(gVehiclesFound > 1)
{
// Select the second vehicle that has responded
DoIP_SelectVehicle(gVehicleAnswered[gVehiclesFound – 2]);
}
// else: a single vehicle will be selected automatically
}