Changed safety door/parking handling to be compliant with legacy Grbl.

Added $384 setting for controlling G92 offset persistence.
Improved $help command output and handling.
Moved the optional tool table in non-volatile storage.
Added gcode parameter support and optional expression support.
This commit is contained in:
Terje Io
2021-09-29 10:22:47 +02:00
parent 11640adcd2
commit 71dc5ac333
30 changed files with 2480 additions and 410 deletions

View File

@@ -23,6 +23,9 @@ target_sources(grbl INTERFACE
${CMAKE_CURRENT_LIST_DIR}/tool_change.c
${CMAKE_CURRENT_LIST_DIR}/alarms.c
${CMAKE_CURRENT_LIST_DIR}/errors.c
${CMAKE_CURRENT_LIST_DIR}/ngc_params.c
${CMAKE_CURRENT_LIST_DIR}/ngc_expr.c
${CMAKE_CURRENT_LIST_DIR}/regex.c
)
target_include_directories(grbl INTERFACE ${CMAKE_CURRENT_LIST_DIR})