Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » ISO11783 Node Layer » Iso11783PDDOnDefaultLogRequest

Iso11783PDDOnDefaultLogRequest (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void Iso11783PDDOnDefaultLogRequest( dword ecuHandle );

Description

This function can be implemented in the CAPL program. The function is called up by the node layer if default logging is requested by the Task Controller. Default logging can then be started with the CAPL function Iso11783PDDSetLogTrigger.

Parameters

  • ecuHandle: Handle of the ECU

Return Values

Example

void Iso11783PDDOnDefaultLogRequest( dword ecuHandle )
{
  Iso11783PDDSetLogTrigger ( ecuHandle, 4, 0x0100, 0, 1000 );
  Iso11783PDDSetLogTrigger ( ecuHandle, 4, 0x0101, 0, 1000 );
}