Skip to main content

DoIP_InitAsTester

Valid for: CANoe DE Note
The following DoIP CAPL function is only available with the modeling library DoIP.dll and eventually an appropriate implementation of the CAPL Callback Interface. Information about the DoIP DLL and the CAPL Callback Interface you find here:

Function Syntax

void DoIP_InitAsTester();

Description

Per default the DoIP.DLL will operate as ECU simulation. In order to use this DLL as tester, e.g. in a test module, the operation mode has to be changed by calling this function in on preStart. It is NOT necessary to call this function when the built-in diagnostics channel is used, i.e. if the DoIP.DLL is not configured in the tester.

Parameters

Return Values

Example

on preStart
{
  // Make sure the DoIP.DLL does not act as vehicle
  DoIP_InitAsTester();
}