From 7bc97876afd9e57e8e5d5a18b39ba401820f2086 Mon Sep 17 00:00:00 2001 From: NICOLA CARMINATI Date: Wed, 26 Aug 2020 10:27:44 +0200 Subject: [PATCH 1/2] Fix Siemens axis selection --- CMS_CORE_Library/Siemens/Nc_Siemens.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMS_CORE_Library/Siemens/Nc_Siemens.cs b/CMS_CORE_Library/Siemens/Nc_Siemens.cs index bf9141e..e5861fb 100644 --- a/CMS_CORE_Library/Siemens/Nc_Siemens.cs +++ b/CMS_CORE_Library/Siemens/Nc_Siemens.cs @@ -2727,7 +2727,7 @@ namespace CMS_CORE_Library.Siemens // Set the path to read on which process is the axis ncAxes[i - 1] = new Item("/Nck/MachineAxis/chanNoAxisIsActive[" + i + "]"); // Set the path in order to find which axes are visible - ncAxes[i - 1 + MAX_AXES_FOR_PROCESS] = new Item("/NC/_N_CH_TEA_ACX/$MC_DISPLAY_AXIS[u" + channel + "," + i + "]"); + ncAxes[i - 1 + MAX_AXES_FOR_PROCESS] = new Item("/Nck/MachineAxis/displayAxis[" + i + "]"); // Set the path of the axes type ncAxes[i - 1 + (MAX_AXES_FOR_PROCESS * 2)] = new Item("/Nck/Configuration/axisType[" + i + "]"); } From 888ea4f718899ceb8abcc1c8499d25f4049781e4 Mon Sep 17 00:00:00 2001 From: NICOLA CARMINATI Date: Wed, 26 Aug 2020 10:32:23 +0200 Subject: [PATCH 2/2] Changed max-shanks number --- CMS_CORE_Library/ToolConfigurations.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMS_CORE_Library/ToolConfigurations.cs b/CMS_CORE_Library/ToolConfigurations.cs index f7b2de2..1ee8bff 100644 --- a/CMS_CORE_Library/ToolConfigurations.cs +++ b/CMS_CORE_Library/ToolConfigurations.cs @@ -244,7 +244,7 @@ namespace CMS_CORE_Library public const int NC_MAX_TOOL_NUMER = 300; public const int NC_MAX_EDGES_PER_TOOL = 3; public const int NC_MAX_TOOLS_PER_FAMILY = 300; - public const int NC_MAX_MULTITOOLS_NUMBER = 3; + public const int NC_MAX_MULTITOOLS_NUMBER = 100; public const int NC_MAX_TOOLS_PER_MULTITOOL = 3; public struct CATEGORY_NAMES