Skip to content

Commit a2b692d

Browse files
DerAndere1SebKuzminsky
authored andcommitted
more notes
1 parent 03a8daa commit a2b692d

5 files changed

Lines changed: 18 additions & 0 deletions

File tree

src/emc/kinematics/5axiskins.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
* 9) Coordinates XYZBCW are required, AUV may be used
4343
* if specified with the coordinates parameter and will
4444
* be mapped one-to-one with the assigned joint.
45+
* 10) The direction of the tilt axis is the opposite of the
46+
* conventional axis direction. See
47+
* https://linuxcnc.org/docs/html/gcode/machining-center.html
4548
********************************************************************/
4649

4750
// non-required coordinates (A,U,V) can be set by using

src/emc/kinematics/maxkins.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
* Copyright (c) 2007 Chris Radek
1111
********************************************************************/
1212

13+
/********************************************************************
14+
* Note: The direction of the B axis is the opposite of the
15+
* conventional axis direction. See
16+
* https://linuxcnc.org/docs/html/gcode/machining-center.html
17+
********************************************************************/
18+
19+
1320
#include "kinematics.h" /* these decls */
1421
#include "posemath.h"
1522
#include "hal.h"

src/emc/kinematics/trtfuncs.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
* 2) 5 axis mill (XYZBC)
2525
* This mill has a tilting table (B axis) and horizontal rotary
2626
* mounted to the table (C axis).
27+
*
28+
* Note: The directions of the rotational axes are the opposite of the
29+
* conventional axis directions. See
30+
* https://linuxcnc.org/docs/html/gcode/machining-center.html
2731
2832
********************************************************************/
2933

src/emc/kinematics/xyzac-trt-kins.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* 2) specify 3 KS,KF,KI functions for switchkins_type=0,1,2
88
* 3) the 0th switchkins_type is the startup default
99
* 4) sparm is a module string parameter for configuration
10+
* 5) The directions of the rotational axes are the opposite of the
11+
* conventional axis directions.
1012
*/
1113

1214
#include "motion.h"

src/emc/kinematics/xyzbc-trt-kins.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* 2) specify 3 KS,KF,KI functions for switchkins_type=0,1,2
88
* 3) the 0th switchkins_type is the startup default
99
* 4) sparm is a module string parameter for configuration
10+
* 5) The directions of the rotational axes are the opposite of the
11+
* conventional axis directions.
1012
*/
1113

1214
#include "motion.h"

0 commit comments

Comments
 (0)