1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-03 03:13:25 +02:00
This commit is contained in:
bdring
2021-03-11 15:40:31 -06:00
parent 1d86f200fa
commit 1f85c32ff0
2 changed files with 6 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
Used to add simple G or M codes to the firmware Used to add simple G or M codes to the firmware
If in doubt use an M code If in doubt use an M code
You can pass letter values like You can pass letter values like "M115 E15"
see the definiitons of parser_block_t and gc_values_t see the definiitons of parser_block_t and gc_values_t
Note: letters have different types like unit32_t and float Note: letters have different types like unit32_t and float

View File

@@ -49,7 +49,6 @@ enum class ModalGroup : uint8_t {
MM8 = 13, // [M7,M8,M9] Coolant control MM8 = 13, // [M7,M8,M9] Coolant control
MM9 = 14, // [M56] Override control MM9 = 14, // [M56] Override control
MM10 = 15, // [M62, M63, M64, M65, M67, M68] User Defined http://linuxcnc.org/docs/html/gcode/overview.html#_modal_groups MM10 = 15, // [M62, M63, M64, M65, M67, M68] User Defined http://linuxcnc.org/docs/html/gcode/overview.html#_modal_groups
}; };
// Command actions for within execution-type modal groups (motion, stopping, non-modal). Used // Command actions for within execution-type modal groups (motion, stopping, non-modal). Used