Skip to main content

vFlashUnloadProject

Valid for: CANoe DE Note: This function replaces the function vFlashUnload. 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 vFlashUnloadProject();

Description

Unloads the current vFlash project. The CAPL callback vFlashUnloadProjectCompleted will be called when the unloading completed and further API calls are possible. Note: This event-driven API is only needed outside of test modules or test units.

Parameters

Return Values

Example

// ...
vFlashUnloadProject();
}

void vFlashUnloadProjectCompleted(enum vFlashStatusCode statusCode)
{
  write("Unloading project completed, another project can be loaded.");
}
vFlashLoadProject