Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » Task Controller Interaction Layer (TC IL) » TCIL_ExportAllDdops

TCIL_ExportAllDdops

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long TCIL_ExportAllDdops(char ddopPath[]); // form 1
long TCIL_ExportAllDdops(dbNode tc, char ddopPath[]); // form 2

Description

Exports the device descriptor object pools of all Task Controller clients into a file.

Parameters

  • ddopPath: Path of the target file (*.xml).
  • tc: Task Controller simulation node to apply the function.

Return Values

  • 0: Function has been executed successfully
  • < 0: An error has occurred, see IL Error Code

Example

Example form 2
long result;
result = TCIL_ExportAllDdop(TC, "XML\\AllClientDDOPs.xml");
if (result < 0)
{
  TestStepFail("Failed to export DDOPs!");
}
TCIL_ExportDdop