ShutdownVortexReconfigData, ShutdownApexReconfigData
void ShutdownVortexReconfigData(
Chip chip
);
void ShutdownApexReconfigData (
Chip chip
);
Description
Destroys the reconfiguration data buffer created by InitializeVortexReconfigData or Initialize ApexReconfigData.
Parameters
chip
The ID the C Code generated for the chip. This will be something like chipName or an_chipName, depending on the name of the chip and the generation options.
Return Value
None
Remarks
This function deallocates memory, and should be called after all reconfiguration processing for the chip is complete. To simply clear the data in the buffer in preparation for a new configuration, call ClearReconfigData instead.
Example