From 2f68d6bf1ba450b0a55a37e35bc45cfa31168a4d Mon Sep 17 00:00:00 2001 From: Ellyan Date: Fri, 11 Aug 2023 16:19:05 +0200 Subject: [PATCH] first try at fixing the citcular move problem also bump rev to 44081 --- kondia-b500.cps | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kondia-b500.cps b/kondia-b500.cps index 0bdd683..b7be6d1 100644 --- a/kondia-b500.cps +++ b/kondia-b500.cps @@ -4,7 +4,7 @@ NUM post processor configuration. - $Revision: 44080 7098e6d148aa6ea195b42597d82fe2f00d0115bb $ + $Revision: 44081 7098e6d148aa6ea195b42597d82fe2f00d0115bb $ $Date: 2023-07-17 12:38:58 $ FORKID {8B1FC740-38BD-4cb2-9CD5-94A55CBE87A5} @@ -639,13 +639,13 @@ function onCircular(clockwise, cx, cy, cz, x, y, z, feed) { } switch (getCircularPlane()) { case PLANE_XY: - writeBlock(gAbsIncModal.format(90), gPlaneModal.format(17), gMotionModal.format(clockwise ? 2 : 3), iOutput.format(cx), jOutput.format(cy), feedOutput.format(feed)); + writeBlock(gAbsIncModal.format(90), gPlaneModal.format(17), gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), zOutput.format(z), iOutput.format(cx), jOutput.format(cy), feedOutput.format(feed)); break; case PLANE_ZX: - writeBlock(gAbsIncModal.format(90), gPlaneModal.format(18), gMotionModal.format(clockwise ? 2 : 3), iOutput.format(cx), kOutput.format(cz), feedOutput.format(feed)); + writeBlock(gAbsIncModal.format(90), gPlaneModal.format(18), gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), zOutput.format(z), iOutput.format(cx), kOutput.format(cz), feedOutput.format(feed)); break; case PLANE_YZ: - writeBlock(gAbsIncModal.format(90), gPlaneModal.format(19), gMotionModal.format(clockwise ? 2 : 3), jOutput.format(cy), kOutput.format(cz), feedOutput.format(feed)); + writeBlock(gAbsIncModal.format(90), gPlaneModal.format(19), gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), zOutput.format(z), jOutput.format(cy), kOutput.format(cz), feedOutput.format(feed)); break; default: linearize(tolerance); -- GitLab