Skip to main content

Iso11783OPSaveAuxAssignment

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long Iso11783OPSaveAuxAssignment( dword ecuHandle, char filename[] );

Description

The function saves the current auxiliary input assignment as “Preferred Auxiliary Input Assignment” in an ini file. With the function Iso11783OPLoadAuxAssignment the “Preferred Assignment” can be load and used again.

Parameters

  • ecuHandle: Handle of the ECU. The handle must be created with Iso11783CreateECU.
  • filename: Filename of an ini file (*.INI)

Return Values

0 or error code

Example

dword handle = 0;
handle = Iso11783CreateECU( gECUName );
[...]
Iso11783OPSaveAuxAssignment( handle, "Sprayer.INI");
[...]