namespace ProductionUiCordonelLegacy.Data
{
///
/// Genesis meter final test states
///
public enum FinalTestState
{
///
/// Idle (nothing to do)
///
Idle,
///
/// Start the initial execution
///
StartInitial,
///
/// Error handling
///
Error,
///
/// Single processing step failed
///
StepFailed,
///
/// Repeat last step
///
RepeatStep,
///
/// Repeat the entire final test
///
RepeatFinalTest,
///
/// Final test failed
///
FinalTestFailed,
///
/// Check the actual shipping state
///
CheckShippingState,
///
/// Check the attachments
///
CheckAttachments,
///
/// Check the order number
///
CheckOrderNumber,
///
/// Check the serial number
///
CheckSerialNumber,
///
/// Connect to Cordonel
///
ConnectCordonel,
///
/// Store all configurations to FLASH memory
///
StoreAllConfigurations,
///
/// Reboot the Cordonel to check all parameters being stored to FLASH memory
///
RebootCordonel,
///
/// Finalize process
///
FinalizeProcess,
///
/// Final parametrization fixed values
///
FinalParametrizationFix,
///
/// Final parametrization with VAKO and CSD
///
FinalParametrizationVakoCsd,
///
/// Read out all parametrization values
///
FullReadOutParametrization,
///
/// Check all settings for against required values
///
ConfigurationCheck,
///
/// Acquire, process set the password file
///
ProcessPasswordFile,
///
/// Process special configuration
///
ProcessSpecialConfig,
///
/// Prepare shipping mode
///
PrepareShippingMode,
///
/// Delimiter for list
///
StateListDelimiter
}
}