Skip to main content

Documentation Index

Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Iso11783PDDObjectPoolDelete

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

long Iso11783PDDObjectPoolDelete( dword ecuHandle );

Description

The function deletes the current device description object pool and sends an Object-pool Delete message to the Task Controller. Contrary to Iso11783PDDDelete the connection to the Task Controller is not removed.

Parameters

  • ecuHandle:
    • Handle of the ECU.
    • The handle must be created with Iso11783CreateECU beforehand or ZERO for general parameters.

Return Values

Error code

Example

if (Iso11783PDDObjectPoolDelete( ecuHandle ) == 0) {
  write("Object pool is deleted and Object-Pool delete message is sent successfully");
}