Skip to content

Commit 3cd702c

Browse files
authored
Merge pull request #4092 from PeterStolz/fix-conflicting-duplicate-ini-keys
configs: remove duplicate INI keys (first occurrence wins)
2 parents 6bda976 + b1fea7d commit 3cd702c

14 files changed

Lines changed: 5 additions & 20 deletions

File tree

configs/sim/axis/gantry/gantry.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ LINEAR_UNITS = inch
7575
ANGULAR_UNITS = degree
7676
DEFAULT_LINEAR_VELOCITY = 1.0
7777
MAX_LINEAR_VELOCITY = 58
78-
MAX_LINEAR_VELOCITY = 58
7978

8079
[EMCIO]
8180
TOOL_TABLE = sim.tbl

configs/sim/axis/gantry/gantry_jjog.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ LINEAR_UNITS = inch
8080
ANGULAR_UNITS = degree
8181
DEFAULT_LINEAR_VELOCITY = 1.0
8282
MAX_LINEAR_VELOCITY = 58
83-
MAX_LINEAR_VELOCITY = 58
8483

8584
[EMCIO]
8685
TOOL_TABLE = sim.tbl

configs/sim/axis/gladevcp/probe.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jpg = image-to-gcode
3030
py = python3
3131

3232
[RS274NGC]
33-
SUBROUTINE_PATH= .
33+
# '.' plus the gladevcp Demo specific Oword subs dir. These must be a single
34+
# colon-separated SUBROUTINE_PATH: LinuxCNC reads only the first occurrence of
35+
# an INI key, so a second SUBROUTINE_PATH line is silently ignored.
36+
SUBROUTINE_PATH = .:../../nc_files/gladevcp_lib
3437
PARAMETER_FILE = sim.var
35-
# gladevcp Demo specific Oword subs live here
36-
SUBROUTINE_PATH = ../../nc_files/gladevcp_lib
3738

3839
[EMCMOT]
3940
EMCMOT = motmod

configs/sim/axis/histogram_demo.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ LINEAR_UNITS = inch
5555
ANGULAR_UNITS = degree
5656
DEFAULT_LINEAR_VELOCITY = 1.2
5757
MAX_LINEAR_VELOCITY = 1.2
58-
MAX_LINEAR_VELOCITY = 1.2345
5958

6059
[EMCIO]
6160
TOOL_TABLE = sim.tbl

configs/sim/axis/ini_hal_demo.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ LINEAR_UNITS = inch
5858
ANGULAR_UNITS = degree
5959
DEFAULT_LINEAR_VELOCITY = 1.2
6060
MAX_LINEAR_VELOCITY = 1.2
61-
MAX_LINEAR_VELOCITY = 1.2345
6261

6362
[EMCIO]
6463
TOOL_TABLE = sim.tbl

configs/sim/axis/vismach/5axis/bridgemill/5axis.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ MACHINE = Sim-5Axis Bridge Mill (xyzbcw)
88
OPEN_FILE = ./5axisgui.ngc
99
INCREMENTS = 10 mm, 1 mm, .1 mm
1010
JOG_AXES = XYZC
11-
GEOMETRY = XYZCBW
1211
DISPLAY = axis
1312
CYCLE_TIME = 0.200
1413
POSITION_OFFSET = RELATIVE
@@ -62,7 +61,6 @@ DEFAULT_LINEAR_VELOCITY = 200.0
6261
MAX_LINEAR_VELOCITY = 346.0
6362
MAX_LINEAR_ACCELERATION = 800.0
6463
DEFAULT_LINEAR_ACCELERATION = 800.0
65-
MAX_ANGULAR_VELOCITY = 360
6664

6765
[EMCIO]
6866
TOOL_TABLE = 5axis.tbl

configs/sim/axis/vismach/scara/scara.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ PYVCP = scara.xml
1818

1919
[RS274NGC]
2020
SUBROUTINE_PATH = ./remap_subs
21-
HAL_PIN_VARS = 1
2221
HAL_PIN_VARS = 1
2322
REMAP = M428 modalgroup=10 ngc=428remap
2423
REMAP = M429 modalgroup=10 ngc=429remap

configs/sim/qtaxis/gantry/qt_gantry.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ LINEAR_UNITS = inch
7373
ANGULAR_UNITS = degree
7474
DEFAULT_LINEAR_VELOCITY = 1.0
7575
MAX_LINEAR_VELOCITY = 58
76-
MAX_LINEAR_VELOCITY = 58
7776

7877
[EMCIO]
7978
TOOL_TABLE = sim.tbl

configs/sim/qtaxis/non-trivial/scara/scara.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ py = python3
6969

7070
[RS274NGC]
7171
SUBROUTINE_PATH = ./remap_subs
72-
HAL_PIN_VARS = 1
7372
HAL_PIN_VARS = 1
7473
REMAP = M428 modalgroup=10 ngc=428remap
7574
REMAP = M429 modalgroup=10 ngc=429remap

configs/sim/qtvcp_screens/non-trivial/scara/scara.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ py = python
7070

7171
[RS274NGC]
7272
SUBROUTINE_PATH = ./remap_subs
73-
HAL_PIN_VARS = 1
7473
HAL_PIN_VARS = 1
7574
REMAP = M428 modalgroup=10 ngc=428remap
7675
REMAP = M429 modalgroup=10 ngc=429remap

0 commit comments

Comments
 (0)