This commit is contained in:
@@ -14,7 +14,6 @@ namespace CMS_CORE_Library.Models
|
||||
public static readonly string[] VALID_PP_FORMATS = { ".txt", ".cnc", ".ini" };
|
||||
public static readonly string[] VALID_IMAGE_FORMATS = { ".jpg", ".jpeg", ".png" };
|
||||
|
||||
public const string IMAGES_PATH = @"C:\CMS\STEP\pp_img\";
|
||||
public const string PART_PRG_PATH = "C:\\PartPrg\\";
|
||||
public const string MILLIMETERS = "mm";
|
||||
public const string INCHES = "inches";
|
||||
@@ -179,6 +178,7 @@ namespace CMS_CORE_Library.Models
|
||||
public static CmsError FILE_NOT_FOUND_ERROR = new CmsError(CMS_ERROR_CODES.FILE_NOT_FOUND, "error_file_not_found");
|
||||
public static CmsError PLC_NOT_RUNNING_ERROR = new CmsError(CMS_ERROR_CODES.PLC_NOT_RUNNING, "error_plc_not_running");
|
||||
public static CmsError HMI_NOT_RESPONDING_ERROR = new CmsError(CMS_ERROR_CODES.HMI_NOT_RESPONDING, "error_hmi_not_responding");
|
||||
public static CmsError PROGRAM_IS_SELECTED_ERROR = new CmsError(CMS_ERROR_CODES.PROGRAM_IS_SELECTED, "error_program_is_selected");
|
||||
|
||||
#endregion Cms Errors Codes
|
||||
|
||||
@@ -189,7 +189,7 @@ namespace CMS_CORE_Library.Models
|
||||
#region Data structure models
|
||||
|
||||
// R-W MEMORY Cell
|
||||
internal struct MEMORY_CELL
|
||||
public struct MEMORY_CELL
|
||||
{
|
||||
public readonly MEMORY_TYPE MemType;
|
||||
public readonly int Address;
|
||||
|
||||
Reference in New Issue
Block a user