Skip to main content

vFlashActivateNetwork

Valid for: CANoe DE Note: With the following function(s) a CAPL program can use vFlash to program an ECU. vFlash has to be installed on the system running the RT kernel. See also: vFlash Automation (Sample Configuration).

Function Syntax

void vFlashActivateNetwork();

Description

Activates the FlexRay network management, if required.
The next API call is only allowed after the CAPL callback vFlashActivateNetworkCompleted was called!
Note: This event-driven API is only needed outside of test modules or test units.

Parameters

Return Values

Example

// ...
// Prepare flashing on FlexRay
vFlashActivateNetwork();
}
void vFlashActivateNetworkCompleted(long vFlashStatusCode)
{
  write("FlexRay network management was activated");
}