Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2d32ca5
gmoccapy: use now ..._SPINDLE_0_... instead of ..._SPINDLE_... using …
hansu Jan 8, 2026
bbbafdb
gmoccapy: use MAX_FEED_OVERRIDE using qt_istat
hansu Jan 8, 2026
bc866a1
gmoccapy: {MIN, MAX, DEFAULT}_ANGULAR_JOG_VEL from qt_istat
hansu Jan 8, 2026
3a5d4f2
sample-configs/axis: move MIN_LINEAR_VELOCITY from TRAJ to DISPLAY
hansu Jan 17, 2026
424723a
docs: remove [TRAJ] MIN_VELOCITY
hansu Jan 17, 2026
8f5b01a
gmoccapy: use spindle min, max and default directly from INI file (#3…
hansu Jan 8, 2026
100ff69
gscreen: use DEFAULT_LINEAR_VELOCITY from DISPLAY instead TRAJ
hansu Feb 9, 2026
c7075a1
gmoccapy: DEFAULT_LINEAR_VELOCITY + MAX_LINEAR_VELOCITY from qt_istat…
hansu Feb 2, 2026
11dfab3
gmoccapy: change SPINDLE => SPINDLE_0 in *.ini files
hansu Jan 27, 2026
8329192
update_ini: basic steps for updating 1.1 -> 1.2
hansu Feb 4, 2026
6bce89e
update_ini: fix keep emtpy lines at the end of a section
hansu Feb 4, 2026
5259950
update_ini: fix/improve regex for finding the DISPLAY section
hansu Feb 8, 2026
4a70de4
update_ini: copy values from TRAJ to DISPLAY
hansu Feb 7, 2026
b3b20e3
update_ini: remove MIN_LINEAR_VELOCITY from TRAJ
hansu Feb 9, 2026
0c7a3c3
update_ini: fix \n to work also from upgrading <1.0
hansu Feb 11, 2026
d9bc65b
update_ini: show info for each version step in one message box
hansu Feb 11, 2026
d8d5904
update_ini: remove warning if no changes in HAL files
hansu Feb 11, 2026
1928c17
docs: update "updating to 2.10"
hansu Feb 11, 2026
7e24a91
update_ini: get the included files in the INI file
hansu Jun 10, 2026
01b9084
update_ini -includes: going through all included
hansu Jun 11, 2026
4bc0907
update_ini -includes: Copy section only if exists
hansu Jun 14, 2026
9c4cd69
update_ini - includes: [EMC] Match also until EOF if INI file is spli…
hansu Jun 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion configs/sim/axis/pentapod/pentapod.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ PYVCP = panel.xml
GEOMETRY = XYZ-AB
INCREMENTS = 10 mm, 1 mm, 0.1 mm

MIN_LINEAR_VELOCITY = 0.100000

[FILTER]
PROGRAM_EXTENSION = .png,.gif,.jpg Grayscale Depth Image
PROGRAM_EXTENSION = .py Python Script
Expand Down Expand Up @@ -61,7 +63,6 @@ CYCLE_TIME = 0.010
DEFAULT_VELOCITY = 5.00
DEFAULT_LINEAR_VELOCITY = 50.000000
MAX_LINEAR_VELOCITY = 100.000000
MIN_LINEAR_VELOCITY = 0.100000
DEFAULT_ANGULAR_VELOCITY = 1.000000
MAX_ANGULAR_VELOCITY = 10.000000
MIN_ANGULAR_VELOCITY = 0.100000
Expand Down
9 changes: 5 additions & 4 deletions configs/sim/gmoccapy/6_axis.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[EMC]
VERSION = 1.1
MACHINE = gmoccapy_9_axis
MACHINE = gmoccapy_6_axis
DEBUG = 0

[DISPLAY]
Expand All @@ -15,10 +15,11 @@ GEOMETRY = XYZABC

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

DEFAULT_SPINDLE_SPEED = 500
# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 500

# list of selectable jog increments
INCREMENTS = 1.000 mm, 0.100 mm, 0.010 mm, 0.001 mm ,1.2345 in
Expand Down
9 changes: 5 additions & 4 deletions configs/sim/gmoccapy/7_axis.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[EMC]
VERSION = 1.1
MACHINE = gmoccapy_9_axis
MACHINE = gmoccapy_7_axis
DEBUG = 0

[DISPLAY]
Expand All @@ -15,10 +15,11 @@ GEOMETRY = XYZABCUVW

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

DEFAULT_SPINDLE_SPEED = 500
# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 500

# list of selectable jog increments
INCREMENTS = 1.000 mm, 0.100 mm, 0.010 mm, 0.001 mm ,1.2345 in
Expand Down
9 changes: 5 additions & 4 deletions configs/sim/gmoccapy/7_axis_tool.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[EMC]
VERSION = 1.1
MACHINE = gmoccapy_9_axis
MACHINE = gmoccapy_7_axis_tool
DEBUG = 0

[DISPLAY]
Expand All @@ -15,10 +15,11 @@ GEOMETRY = XYZABCUVW

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

DEFAULT_SPINDLE_SPEED = 500
# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 500

# list of selectable jog increments
INCREMENTS = 1.000 mm, 0.100 mm, 0.010 mm, 0.001 mm ,1.2345 in
Expand Down
9 changes: 5 additions & 4 deletions configs/sim/gmoccapy/8_axis.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[EMC]
VERSION = 1.1
MACHINE = gmoccapy_9_axis
MACHINE = gmoccapy_8_axis
DEBUG = 0

[DISPLAY]
Expand All @@ -15,10 +15,11 @@ GEOMETRY = XYZABCUVW

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

DEFAULT_SPINDLE_SPEED = 500
# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 500

# list of selectable jog increments
INCREMENTS = 1.000 mm, 0.100 mm, 0.010 mm, 0.001 mm ,1.2345 in
Expand Down
7 changes: 4 additions & 3 deletions configs/sim/gmoccapy/9_axis.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ GEOMETRY = XYZABCUVW

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

DEFAULT_SPINDLE_SPEED = 500
# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 500

# list of selectable jog increments
INCREMENTS = 1.000 mm, 0.100 mm, 0.010 mm, 0.001 mm ,1.2345 in
Expand Down
16 changes: 7 additions & 9 deletions configs/sim/gmoccapy/gmoccapy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,19 @@ CYCLE_TIME = 100

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MIN_SPINDLE_0_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2

# Initial value for spindle speed
DEFAULT_SPINDLE_SPEED = 450
# Spindle start speed
DEFAULT_SPINDLE_0_SPEED = 450
# Scaling of spindle speed bar
MIN_SPINDLE_0_SPEED = 0
MAX_SPINDLE_0_SPEED = 3000

# The following are not used, added here to suppress warnings (from qt_istat/logger).
DEFAULT_LINEAR_VELOCITY = 35
MIN_LINEAR_VELOCITY = 0
MAX_LINEAR_VELOCITY = 234
DEFAULT_SPINDLE_0_SPEED = 500
MIN_SPINDLE_0_SPEED = 0
MAX_SPINDLE_0_SPEED = 3000
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_4_axis.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
8 changes: 5 additions & 3 deletions configs/sim/gmoccapy/gmoccapy_800x600.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ CYCLE_TIME = 100

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
DEFAULT_LINEAR_VELOCITY = 100
MAX_ANGULAR_VELOCITY = 234
DEFAULT_SPINDLE_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_XYZAB.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_XYZAC.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
Expand Down
9 changes: 6 additions & 3 deletions configs/sim/gmoccapy/gmoccapy_XYZCW.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[EMC]

VERSION = 1.1
MACHINE = gmoccapy XYZAB
MACHINE = gmoccapy XYZCW
DEBUG = 0
#DEBUG = 0x7FFFFFFF

Expand All @@ -22,8 +22,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
Expand Down
8 changes: 5 additions & 3 deletions configs/sim/gmoccapy/gmoccapy_blockdelete.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ CYCLE_TIME = 100

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
DEFAULT_LINEAR_VELOCITY = 100
MAX_ANGULAR_VELOCITY = 234
DEFAULT_SPINDLE_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_left_panel.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_messages.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_pedant.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = /home/emcmesa/linuxcnc/nc_files
Expand Down
8 changes: 5 additions & 3 deletions configs/sim/gmoccapy/gmoccapy_pyngcgui.ini
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,16 @@ CYCLE_TIME = 100

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
DEFAULT_LINEAR_VELOCITY = 100
MAX_ANGULAR_VELOCITY = 234
DEFAULT_SPINDLE_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
8 changes: 5 additions & 3 deletions configs/sim/gmoccapy/gmoccapy_pyngcgui_gcmc.ini
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,16 @@ CYCLE_TIME = 100

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
DEFAULT_LINEAR_VELOCITY = 100
MAX_ANGULAR_VELOCITY = 234
DEFAULT_SPINDLE_SPEED = 450

# Introductory graphic
INTRO_GRAPHIC = linuxcnc.gif
Expand Down
8 changes: 5 additions & 3 deletions configs/sim/gmoccapy/gmoccapy_qt_messages.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ CYCLE_TIME = 100

# Values that will be allowed for override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = 0.5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = 0.5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Max and default jog speeds in units per second
MAX_LINEAR_VELOCITY = 166
DEFAULT_LINEAR_VELOCITY = 100
MAX_ANGULAR_VELOCITY = 234
DEFAULT_SPINDLE_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_right_panel.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
7 changes: 5 additions & 2 deletions configs/sim/gmoccapy/gmoccapy_sim_hardware_button.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ CYCLE_TIME = 100

# Highest value that will be allowed for feed override, 1.0 = 100%
MAX_FEED_OVERRIDE = 1.5
MAX_SPINDLE_OVERRIDE = 1.2
MIN_SPINDLE_OVERRIDE = .5
MAX_SPINDLE_0_OVERRIDE = 1.2
MIN_SPINDLE_0_OVERRIDE = .5

# Start value for spindle speed
DEFAULT_SPINDLE_0_SPEED = 450

# Prefix to be used
PROGRAM_PREFIX = ../../nc_files/
Expand Down
Loading
Loading