E_OCPP1_FirmwareStatus

TYPE E_OCPP1_FirmwareStatus :
(
    None := 0,          // Any status not covered by this implementation
    Downloaded,         // New firmware has been downloaded by Charge Point.
    DownloadFailed,     // Charge point failed to download firmware.
    Downloading,        // Firmware is being downloaded.
    Idle,               // Charge Point is not performing firmware update related tasks.
    InstallationFailed, // Installation of new firmware has failed.
    Installing,         // Firmware is being installed.
    Installed           // New firmware has successfully been installed in charge point.
) UDINT;
END_TYPE