Star new NC creation (S7Net)

This commit is contained in:
Samuele Locatelli
2020-05-07 16:35:59 +02:00
parent f189f12bf5
commit 62aa645ce8
4 changed files with 7075 additions and 1 deletions
+1
View File
@@ -153,6 +153,7 @@
<Compile Include="Osai\Nc_Osai.cs" />
<Compile Include="Osai\OSAIErrMgr.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="S7Net\Nc_S7Net.cs" />
<Compile Include="Siemens\Nc_Siemens.cs" />
<Compile Include="Siemens\SiemensEdgesConfigurations.cs" />
<Compile Include="ToolConfigurations.cs" />
+2 -1
View File
@@ -72,6 +72,7 @@ namespace CMS_CORE_Library.Models
OSAI_TT_FOLDER_NOT_FOUND = 27,
OPTION_NOT_CONSISTENT = 28,
WRONG_CMS_PP = 29,
SIEMENS_TOOL_TABLE_ERROR = 30
SIEMENS_TOOL_TABLE_ERROR = 30,
PLC_IP_NOT_FOUND = 31
}
}
@@ -178,6 +178,7 @@ namespace CMS_CORE_Library.Models
public static CmsError INCORRECT_PARAMETERS_ERROR = new CmsError(CMS_ERROR_CODES.INCORRECT_PARAMETERS, "error_incorrect_parameters");
public static CmsError INCORRECT_LANGUAGE_ERROR = new CmsError(CMS_ERROR_CODES.NC_LANGUAGE_ERROR, "error_invalid_language");
public static CmsError SIEMENS_ENVIRONMENT_NOT_FOUND_ERROR = new CmsError(CMS_ERROR_CODES.SIEMENS_ENVIRONMENT_NOT_FOUND, "error_siemens_enviroment_not_found_error");
public static CmsError PLC_IP_NOT_FOUND_ERROR = new CmsError(CMS_ERROR_CODES.PLC_IP_NOT_FOUND, "error_plc_ip_not_found_error");
public static CmsError SIEMENS_HMI_NOT_RUNNING_ERROR = new CmsError(CMS_ERROR_CODES.SIEMENS_HMI_NOT_RUNNING, "error_siemens_hmi_not_running");
public static CmsError MAX_TOOL_REACHED_ERROR = new CmsError(CMS_ERROR_CODES.MAX_TOOL_REACHED, "error_max_tool_reached");
public static CmsError MAX_EDGES_PER_TOOL_REACHED_ERROR = new CmsError(CMS_ERROR_CODES.MAX_EDGES_PER_TOOL_REACHED, "error_max_edges_per_tool_reached");
File diff suppressed because it is too large Load Diff