diff --git a/ecmc_plugin_grbl/ecmcPluginGrbl.c b/ecmc_plugin_grbl/ecmcPluginGrbl.c index 2ec4cbc..1622221 100644 --- a/ecmc_plugin_grbl/ecmcPluginGrbl.c +++ b/ecmc_plugin_grbl/ecmcPluginGrbl.c @@ -177,8 +177,18 @@ int grblConstruct(char *configStr) // test some commands printf("Test command:G0X10Y100\n"); ecmc_write_command_serial("G0X10Y100\n"); + printf("Test command:G4P4\n"); + ecmc_write_command_serial("G4P4\n"); printf("Test command:G1X20Y200F20\n"); ecmc_write_command_serial("G1X20Y200F20\n"); + printf("Test command:G4P4\n"); + ecmc_write_command_serial("G4P4\n"); + printf("Test command:G2X40Y220R20\n"); + ecmc_write_command_serial("G2X40Y220R20\n"); + printf("Test command:$\n"); + ecmc_write_command_serial("$\n"); + + //printf("Test command:$J=X10.0Y-1.5\n"); //ecmc_write_command_serial("$J=X10.0Y-1.5\0"); //printf("Test command:#\n"); diff --git a/grbl/protocol.c b/grbl/protocol.c index 51cb413..dd95bc7 100644 --- a/grbl/protocol.c +++ b/grbl/protocol.c @@ -78,7 +78,7 @@ void protocol_main_loop() // initial filtering by removing spaces and comments and capitalizing all letters. while((c = serial_read()) != SERIAL_NO_DATA) { if ((c == '\n') || (c == '\r')) { // End of line reached - printf("NEW_CHAR\n"); + //printf("NEW_CHAR\n"); protocol_execute_realtime(); // Runtime command check point. if (sys.abort) { return; } // Bail to calling function upon system abort diff --git a/grbl/serial.c b/grbl/serial.c index f5b7b10..f093b38 100644 --- a/grbl/serial.c +++ b/grbl/serial.c @@ -114,7 +114,7 @@ void serial_write(uint8_t data) { char ecmc_get_char_from_grbl_tx_buffer() //ISR(SERIAL_UDRE) { - printf("%s:%s:%d:\n",__FILE__,__FUNCTION__,__LINE__); + //printf("%s:%s:%d:\n",__FILE__,__FUNCTION__,__LINE__); uint8_t tail = serial_tx_buffer_tail; // Temporary serial_tx_buffer_tail (to optimize for volatile) char tempChar=0; // Send a byte from the buffer diff --git a/iocsh/log.log b/iocsh/log.log index c39d601..7a91d98 100644 --- a/iocsh/log.log +++ b/iocsh/log.log @@ -1,9 +1,9 @@ registerChannelProviderLocal firstTime true # -# Start at "2022-W03-Jan19-2003-51-CET" +# Start at "2022-W03-Jan19-2113-05-CET" # # Version information: -# European Spallation Source ERIC : iocsh.bash (3.4.0-PID-16800) +# European Spallation Source ERIC : iocsh.bash (3.4.0-PID-19924) # # --->--> snip -->--> # Please Use Version and other environment variables @@ -31,10 +31,10 @@ registerChannelProviderLocal firstTime true # --->--> snip -->--> # # Set REQUIRE_IOC for its internal PVs -epicsEnvSet REQUIRE_IOC "REQMOD:raspberrypi-16800" +epicsEnvSet REQUIRE_IOC "REQMOD:raspberrypi-19924" # # Enable an exit subroutine for sotfioc -dbLoadRecords "/home/pi/epics/base-7.0.5/db/softIocExit.db" "IOC=REQMOD:raspberrypi-16800" +dbLoadRecords "/home/pi/epics/base-7.0.5/db/softIocExit.db" "IOC=REQMOD:raspberrypi-19924" # # Set E3_IOCSH_TOP for the absolute path where iocsh.bash is executed. epicsEnvSet E3_IOCSH_TOP "/home/pi/sources/e3-ecmc_plugin_grbl/ecmc_plugin_grbl-dev/iocsh" @@ -206,16 +206,16 @@ epicsEnvSet("ECMC_MOTOR_PORT" "MCU1") epicsEnvSet("ECMC_ASYN_PORT" "MC_CPU1") epicsEnvSet("ECMC_PREFIX" "IOC_TEST:") ecmcAsynPortDriverConfigure(MC_CPU1,1000,0,0,100) -ecmcAsynPortDriverConfigure: portName = MC_CPU1, paramTableSi2022/01/19 20:03:51.522 +ecmcAsynPortDriverConfigure: portName = MC_CPU1, paramTableSi2022/01/19 21:13:05.860 ECMC Initializes............. -2022/01/19 20:03:51.523 ESS Open Source EtherCAT Motion Control Epics Module2022/01/19 20:03:51.523 +2022/01/19 21:13:05.861 ESS Open Source EtherCAT Motion Control Epics Module2022/01/19 21:13:05.861 Mode: Configuration -2022/01/19 20:03:51.523 OK -2022/01/19 20:03:51.523 OK -2022/01/19 20:03:51.524 OK -2022/01/19 20:03:51.556 OK -2022/01/19 20:03:51.556 OK -2022/01/19 20:03:51.556 OK +2022/01/19 21:13:05.862 OK +2022/01/19 21:13:05.862 OK +2022/01/19 21:13:05.865 OK +2022/01/19 21:13:05.908 OK +2022/01/19 21:13:05.909 OK +2022/01/19 21:13:05.909 OK ze = 1000, disableAutoConnect = 0, priority = 0, defaultSampleRateMS = 100.000000 asynOctetSetOutputEos(MC_CPU1, -1, ";\n") asynOctetSetInputEos(MC_CPU1, -1, ";\n") @@ -284,10 +284,11 @@ ecmcConfigOrDie "Cfg.LoadPlugin(0,/home/pi/epics/base-7.0.5/require/3.4.0/siteMo ../ecmc_plugin_grbl/ecmcPluginGrbl.c:ecmc_grbl_client_simulation_thread:46 grbl main thread created successfully -Waiting for grbl init..../ecmc_plugin_grbl/ecmcPluginGrbl.c:ecmc_grbl_main_thread:57 +Waiting for grbl init..../ecmc_plug2022/01/19 21:13:08.916 OK +in_grbl/ecmcPluginGrbl.c:ecmc_grbl_main_thread:57 ../grbl/serial.c:serial_init:70: ../grbl/eeprom.c:ecmc_init_file:53 -../grbl/settings.c:settings_restore:132 settings_restore complete!!!.. +.../grbl/settings.c:settings_restore:132 settings_restore complete!!!.. ../grbl/eeprom.c:memcpy_from_eeprom_with_checksum:215 EEPROM simulated by file.. ../grbl/stepper.c:stepper_init:624 ../grbl/system.c:system_init:26: @@ -305,36 +306,8 @@ Waiting for grbl init..../ecmc_plugin_grbl/ecmcPluginGrbl.c:ecmc_grbl_main_threa ../grbl/system.c:system_check_safety_door_ajar:93: ../grbl/system.c:system_execute_startup:107: ../grbl/eeprom.c:memcpy_from_eeprom_with_checksum:215 EEPROM simulated by file.. -../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - -../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -G../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -r../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -b../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -l../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -1../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -.../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -1../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -h../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -[../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -'../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -$../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -'../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -f../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -o../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -r../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -h../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -e../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -l../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -p../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -]../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - + +Grbl 1.1h ['$' for help] ../grbl/eeprom.c:memcpy_from_eeprom_with_checksum:215 EEPROM simulated by file.. . @@ -351,39 +324,167 @@ Adding 0 to buffer G0X10Y1 Adding 0 to buffer G0X10Y10 Adding to buffer G0X10Y100 -Test command:G1X20Y200F20 +Test command:G4P4 Adding G to buffer G0X10Y100 -NEW_CHAR +Adding 4 to buffer G0X10Y100 +G +Adding P to buffer G0X10Y100 +G4 +Adding 4 to buffer G0X10Y100 +G4P +Adding + to buffer G0X10Y100 +G4P4 +Test command:G1X20Y200F20 +Adding G to buffer G0X10Y100 +G4P4 + Adding 1 to buffer G0X10Y100 +G4P4 G Adding X to buffer G0X10Y100 +G4P4 G1 +Adding 2 to buffer G0X10Y100 +G4P4 +G1X +Adding 0 to buffer G0X10Y100 +G4P4 +G1X2 +Adding Y to buffer G0X10Y100 +G4P4 +G1X20 +Adding 2 to buffer G0X10Y100 +G4P4 +G1X20Y +Adding 0 to buffer G0X10Y100 +G4P4 +G1X20Y2 +Adding 0 to buffer G0X10Y100 +G4P4 +G1X20Y20 +Adding F to buffer G0X10Y100 +G4P4 +G1X20Y200 +Adding 2 to buffer G0X10Y100 +G4P4 +G1X20Y200F +Adding 0 to buffer G0X10Y100 +G4P4 +G1X20Y200F2 +Adding + to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +Test command:G4P4 +Adding G to buffer G0X10Y100 +G4P4 +G1X20Y200F20 + +Adding 4 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G +Adding P to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4 +Adding 4 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P +Adding + to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +Test command:G2X40Y220R20 +Adding G to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 + +Adding 2 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G +Adding X to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2 +Adding 4 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X +Adding 0 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X4 +Adding Y to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40 +Adding 2 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y +Adding 2 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y2 +Adding 0 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y22 +Adding R to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y220 +Adding 2 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y220R +Adding 0 to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y220R2 +Adding + to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y220R20 +Test command:$ +Adding $ to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y220R20 + +Adding + to buffer G0X10Y100 +G4P4 +G1X20Y200F20 +G4P4 +G2X40Y220R20 +$ +ecmcEpicsEnvSetCalcTernary("ECMC_PLUGIN_REPORT", "1>0","","#") ../grbl/gcode.c:gc_execute_line:72:G0X10Y100 1 letter=G value=0.000000 -Adding 2 to buffer G0X10Y100 -G1X -Adding 0 to buffer G0X10Y100 -G1X2 -Adding Y to buffer G0X10Y100 -G1X20 -Adding 2 to buffer G0X10Y100 -G1X20Y -Adding 0 to buffer G0X10Y100 -G1X20Y2 -Adding 0 to buffer G0X10Y100 -G1X20Y20 -Adding F to buffer G0X10Y100 -G1X20Y200 -Adding 2 to buffer G0X10Y100 -G1X20Y200F -Adding 0 to buffer G0X10Y100 -G1X20Y200F2 -Adding - to buffer G0X10Y100 -G1X20Y200F20 int_value=0 mantissa=0 axis_command=2 @@ -407,74 +508,48 @@ mantissa=0 ../grbl/gcode.c:gc_execute_line:385:axis_command=2 ../grbl/gcode.c:gc_execute_line:390:axis_command=2 ../grbl/gcode.c:gc_execute_line:396 -../grbl/gcode.c:gc_execute_line:4112022/01/19 20:03:53.560 OK -2022/01/19 20:03:53.562 OK -2022/01/19 20:03:53.562 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAtIocBuild (0). Allow callbacks: true. +../grbl/gcode.c:gc_execute_line:411:gc_parser_flags=0 +../grbl/gcode.c:gc_execute_line:417:gc_blo2022/01/19 21:13:08.921 OK +2022/01/19 21:13:08.921 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAtIocBuild (0). Allow callbacks: true. Starting iocInit -2022/01/19 20:03:53.562 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAtBeginning (1). Allow callbacks: true. -:gc_parser_flags=0 -../grbl/gcode.c:gc_execute_line:417:gc_block.modal.feed_rate=0 +2022/01/19 21:13:08.921 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAtBeginning (1). Allow callbacks: true. +2022/01/19 21:13:08.922 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterCallbackInit (2). Allow callbacks: true. +2022/01/19 21:13:08.922 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterCaLinkInit (3). Allow callbacks: true. +2022/01/19 21:13:08.922 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitDrvSup (4). Allow callbacks: true. +2022/01/19 21:13:08.923 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitRecSup (5). Allow callbacks: true. +2022/01/19 21:13:08.923 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitDevSup (6). Allow callbacks: true. +2022/01/19 21:13:08.925 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitDatabase (7). Allow callbacks: true. +2022/01/19 21:13:08.925 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterFinishDevSup (8). Allow callbacks: true. +ck.modal.feed_rate=0 ../grbl/gcode.c:gc_execute_line:444:gc_state.feed_rate=0.000000 +ecmcConfigOrDie "Cfg.ReportPlugin(0)" ../grbl/motion_control.c:mc_line:33 -NEW_CHAR -../grbl/gcode.c:gc_execute_line:72:G1X20Y200F20 +../grbl/gcode.c:gc_execute_line:72:G4P4 1 letter=G -value=1.000000 -int_value=1 +value=4.000000 +int_value=4 mantissa=0 -axis_command=2 -here!! here 2!! here 3!! ../grbl/gcode.c:gc_execute_line:349: 1 -letter=X -value=20.000000 -int_value=20 +letter=P +value=4.000000 +int_value=4 mantissa=0 ../grbl/gcode.c:gc_execute_line:349: -1 -letter=Y -value=200.000000 -int_value=200 -mantissa=0 -../grbl/gcode.c:gc_execute_line:349: -1 -letter=F -value=20.000000 -int_value=20 -mantissa=0 -../grbl/gcode.c:gc_execute_line:349: -../grbl/gcode.c:gc_execute_line:384:axis_words=3 -../grbl/gcode.c:gc_execute_line:385:axis_command=2 -../grbl/gcode.c:gc_execute_line:390:axis_command=2 +../grbl/gcode.c:gc_execute_line:384:axis_words=0 +../grbl/gcode.c:gc_execute_line:385:axis_command=0 +../grbl/gcode.c:gc_execute_line:390:axis_command=0 ../grbl/gcode.c:gc_execute_line:396 ../grbl/gcode.c:gc_execute_line:411:gc_parser_flags=0 ../grbl/gcode.c:gc_execute_line:417:gc_block.modal.feed_rate=0 -../grbl/motion_control.c:mc_line:33 -../grbl/stepper.c:st_update_plan_block_parameters:658 +../grbl/gcode.c:gc_execute_line:444:gc_state.feed_rate=0.000000 +../grbl/motion_control.c:mc_dwell:200 ../grbl/stepper.c:st_next_block_index:671 ../grbl/stepper.c:st_wake_up:264 ../grbl/stepper.c:ecmc_start_dummy_thread:245 -ecmcEpicsEnvSetCalcTernary("ECMC_PLUGIN_REPORT", "1>0","","#") - - Thread created successfully -../grbl/stepper.c:ecmc_dummy_thread:228 -../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=0,4,0.. -../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -o../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -k../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - -../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -o../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: -k../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - ../grbl/serial.c:ecmc_get_char_from_grbl_tx_buffer:117: - -ecmcConfigOrDie "Cfg.ReportPlugin(0)" Plugin info: Index = 0 Name = ecmcPluginGrbl @@ -489,47 +564,47 @@ Plugin info: max plc funcs = 64 max plc func args = 10 max plc consts = 64 - Construct func = @0xb4e5f6f8 - Enter realtime func = @0xb4e5f4c8 - Exit realtime func = @0xb4e5f4d0 - Realtime func = @0xb4e5f4c0 - Destruct func = @0xb4e5f6e0 - dlhandle = @0xc96f90 + Construct func = @0xb4e5e6f8 + Enter realtime func = @0xb4e5e4c8 + Exit realtime func = @0xb4e5e4d0 + Realtime func = @0xb4e5e4c0 + Destruct func = @0xb4e5e6e0 + dlhandle = @0x484218 Plc functions: funcs[00]: Name = "grbl_connect();" Desc = double grbl_connect() : Connect to grbl interface (from config str). Arg count = 0 - func = @0xb4e5f4d8 + func = @0xb4e5e4d8 Plc constants: + + Thread created successfully epicsEnvUnset(ECMC_PLUGIN_REPORT); +../grbl/stepper.c:ecmc_dummy_thread:228 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=0,4,0.. epicsEnvUnset(ECMC_PLUGIN_FILNAME) epicsEnvUnset(ECMC_PLUGIN_CONFIG) ############################################################################## -../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ## PLC 0 -../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=1,7,0.. # $(SCRIPTEXEC) $(ecmccfg_DIR)loadPLCFile.cmd, "PLC_ID=0, SAMPLE_RATE_MS=1000,FILE=./plc/can.plc") iocInit() +ok ############################################################################ ## EPICS R7.0.5-E3-7.0.5-patch ## Rev. 2021-05-05T19:45+0200 ############################################################################ ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=1,7,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=1,11,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=1,15,0.. -../grbl/spindle_control.c:spindle_set2022/01/19 20:03:53.568 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterCallbackInit (2). Allow callbacks: true. -2022/01/19 20:03:53.569 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterCaLinkInit (3). Allow callbacks: true. -2022/01/19 20:03:53.569 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitDrvSup (4). Allow callbacks: true. -2022/01/19 20:03:53.569 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitRecSup (5). Allow callbacks: true. -2022/01/19 20:03:53.569 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitDevSup (6). Allow callbacks: true. -2022/01/19 20:03:53.572 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitDatabase (7). Allow callbacks: true. -2022/01/19 20:03:53.572 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterFinishDevSup (8). Allow callbacks: true. -_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2,19,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. @@ -1067,9 +1142,7 @@ _speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=222,2222,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=223,2230,0.. -../grbl/spindle_control.c:spin2022/01/19 20:03:54.074 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterScanInit (9). Allow callbacks: true. -2022/01/19 20:03:54.074 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitialProcess (10). Allow callbacks: true. -dle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=224,2237,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=224,2245,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=225,2252,0.. @@ -1128,9 +1201,7 @@ dle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=254,2545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=255,2552,0.. -../grbl/stepper.c:ecmc_dummy2022/01/19 20:03:54.075 ecmcAsynPortDriver:getEpicsState: EPICS state: Unknown state (11). Allow callbacks: true. -2022/01/19 20:03:54.075 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterIocBuilt (12). Allow callbacks: true. -_thread:237 Positions(x,y,z)=256,2560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=256,2560,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=257,2567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=257,2575,0.. @@ -1141,7 +1212,11 @@ _thread:237 Positions(x,y,z)=256,2560,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=260,2605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=261,2612,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=262,2620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positio2022/01/19 21:13:09.426 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterScanInit (9). Allow callbacks: true. +2022/01/19 21:13:09.427 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInitialProcess (10). Allow callbacks: true. +2022/01/19 21:13:09.428 ecmcAsynPortDriver:getEpicsState: EPICS state: Unknown state (11). Allow callbacks: true. +2022/01/19 21:13:09.428 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterIocBuilt (12). Allow callbacks: true. +ns(x,y,z)=262,2620,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=263,2627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=263,2635,0.. @@ -1366,14 +1441,7 @@ _thread:237 Positions(x,y,z)=256,2560,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=384,3842,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=385,3850,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=386,3857,0.. -../grbl/spindle_2022/01/19 20:03:54.299 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAtIocRun (13). Allow callbacks: true. -2022/01/19 20:03:54.300 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterDatabaseRunning (14). Allow callbacks: true. -2022/01/19 20:03:54.300 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInterruptAccept (28). Allow callbacks: true. -2022/01/19 20:03:54.300 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterCaServerRunning (15). Allow callbacks: true. -2022/01/19 20:03:54.300 ecmcAsynPortDriver:getEpicsState: EPICS state: Unknown state (29). Allow callbacks: true. -iocRun: All initialization complete -2022/01/19 20:03:54.328 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterIocRunning (16). Allow callbacks: true. -control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=386,3865,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=387,3872,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=388,3880,0.. @@ -1384,7 +1452,13 @@ control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=390,3902,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=391,3910,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=392,3917,0.. -../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_s2022/01/19 21:13:09.631 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAtIocRun (13). Allow callbacks: true. +2022/01/19 21:13:09.631 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterDatabaseRunning (14). Allow callbacks: true. +2022/01/19 21:13:09.631 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterInterruptAccept (28). Allow callbacks: true. +2022/01/19 21:13:09.631 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterCaServerRunning (15). Allow callbacks: true. +2022/01/19 21:13:09.631 ecmcAsynPortDriver:getEpicsState: EPICS state: Unknown state (29). Allow callbacks: true. +iocRun: All initialization complete +et_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=392,3925,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=393,3932,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=394,3940,0.. @@ -1410,9 +1484,6 @@ control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=405,4052,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=406,4060,0.. -# Set the IOC Prompt String One -epicsEnvSet IOCSH_PS1 "raspberrypi-16800 > " -# ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=407,4067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=407,4075,0.. @@ -1446,7 +1517,11 @@ epicsEnvSet IOCSH_PS1 "raspberrypi-16800 > " ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=423,4232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=424,4240,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=425,4247,0.. +../grbl/stepper.c:ecmc_dummy_thre2022/01/19 21:13:09.654 ecmcAsynPortDriver:getEpicsState: EPICS state: initHookAfterIocRunning (16). Allow callbacks: true. +ad:237 Positions(x,y,z)=425,4247,0.. +# Set the IOC Prompt String One +epicsEnvSet IOCSH_PS1 "raspberrypi-19924 > " +# ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=425,4255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=426,4262,0.. @@ -1669,7 +1744,7 @@ epicsEnvSet IOCSH_PS1 "raspberrypi-16800 > " ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=546,5462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=547,5470,0.. -raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548,5477,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548,5477,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548,5485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=549,5492,0.. @@ -1711,7 +1786,7 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=569,5695,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=570,5702,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=571,5710,0.. +raspberrypi-19924 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=571,5710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=572,5717,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=572,5725,0.. @@ -5111,8 +5186,8 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2433,24334,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2434,24338,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2434,24341,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2435,24345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2435,24345,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2435,24349,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2435,24353,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2436,24356,0.. @@ -5191,8 +5266,8 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2458,24578,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2458,24581,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2459,24585,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2459,24589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2459,24589,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2459,24593,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2460,24596,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2460,24600,0.. @@ -5205,8 +5280,8 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2462,24619,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2462,24623,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2463,24626,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2463,24630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2463,24630,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2463,24634,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2464,24638,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2464,24641,0.. @@ -5240,8 +5315,8 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2472,24720,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2472,24724,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2473,24728,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2473,24731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2473,24731,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2474,24735,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2474,24739,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2474,24743,0.. @@ -5267,42 +5342,41 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2480,24799,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2480,24803,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2481,24806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2481,24806,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2481,24810,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2481,24814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2482,24818,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2482,24821,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2483,24825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2483,24825,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2483,24829,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2483,24833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2484,24836,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2484,24840,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2484,24844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2484,24844,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2485,24848,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2485,24851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2486,24855,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2486,24859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:st_next_block_index:671 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2486,24863,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2487,24866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2487,24870,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2487,24874,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2488,24878,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2488,24878,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2488,24881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2489,24885,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2489,24889,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2489,24893,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2489,24893,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2490,24896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2490,24900,0.. @@ -5320,13 +5394,13 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2493,24930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2493,24934,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2494,24938,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2494,24938,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2494,24941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2495,24945,0.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2495,24949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2495,24949,0.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2495,24953,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2496,24956,0.. @@ -5345,21756 +5419,28471 @@ raspberrypi-16800 > ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=548 ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2498,24983,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2499,24986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2499,24986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2499,24990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2499,24994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2499,24994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2500,24998,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +Segment buffer empty!!!!!!!!!!!!!!!!!!!!!../grbl/stepper.c:st_go_idle:295 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2500,25000,0.. +../grbl/gcode.c:gc_execute_line:72:G1X20Y200F20 +1 +letter=G +value=1.000000 +int_value=1 +mantissa=0 +axis_command=2 +here!! +here 2!! +here 3!! +../grbl/gcode.c:gc_execute_line:349: +1 +letter=X +value=20.000000 +int_value=20 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +1 +letter=Y +value=200.000000 +int_value=200 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +1 +letter=F +value=20.000000 +int_value=20 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +../grbl/gcode.c:gc_execute_line:384:axis_words=3 +../grbl/gcode.c:gc_execute_line:385:axis_command=2 +../grbl/gcode.c:gc_execute_line:390:axis_command=2 +../grbl/gcode.c:gc_execute_line:396 +../grbl/gcode.c:gc_execute_line:411:gc_parser_flags=0 +../grbl/gcode.c:gc_execute_line:417:gc_block.modal.feed_rate=0 +../grbl/motion_control.c:mc_line:33 +../grbl/gcode.c:gc_execute_line:72:G4P4 +1 +letter=G +value=4.000000 +int_value=4 +mantissa=0 +here 2!! +here 3!! +../grbl/gcode.c:gc_execute_line:349: +1 +letter=P +value=4.000000 +int_value=4 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +../grbl/gcode.c:gc_execute_line:384:axis_words=0 +../grbl/gcode.c:gc_execute_line:385:axis_command=0 +../grbl/gcode.c:gc_execute_line:390:axis_command=0 +../grbl/gcode.c:gc_execute_line:396 +../grbl/gcode.c:gc_execute_line:411:gc_parser_flags=0 +../grbl/gcode.c:gc_execute_line:417:gc_block.modal.feed_rate=0 +../grbl/gcode.c:gc_execute_line:444:gc_state.feed_rate=20.000000 +../grbl/motion_control.c:mc_dwell:200 +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:st_wake_up:264 +../grbl/stepper.c:ecmc_start_dummy_thread:245 +ok +ok + + Thread created successfully +../grbl/stepper.c:ecmc_dummy_thread:228 ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2500,25001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2501,25005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2500,25004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2501,25009,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2501,25007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2501,25013,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2501,25011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2502,25016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2501,25015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2502,25020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2502,25019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2502,25024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2502,25022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2503,25028,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2503,25026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2503,25031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2503,25030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2504,25035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2503,25034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2504,25039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2504,25037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2504,25043,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2504,25041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2505,25046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2504,25045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2505,25050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2505,25049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2505,25054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2505,25052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2506,25058,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2506,25056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2506,25061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2506,25060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2507,25065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2506,25064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2507,25069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2507,25067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2507,25073,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2507,25071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2508,25076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2507,25075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2508,25080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2508,25079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2508,25084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2508,25082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2509,25088,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2509,25086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2509,25091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2509,25090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2510,25095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2509,25094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2510,25099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2510,25097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2510,25103,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2510,25101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2511,25106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2510,25105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2511,25110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2511,25109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2511,25114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2511,25112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2512,25118,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2512,25116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2512,25121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2512,25120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2513,25125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2512,25124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2513,25129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2513,25127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2513,25133,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2513,25131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2514,25136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2513,25135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2514,25139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2514,25140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2514,25144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2514,25142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2515,25148,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2515,25146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2515,25151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2515,25150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2516,25155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2515,25154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2516,25159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2516,25157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2516,25163,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2516,25161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2517,25166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2516,25165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2517,25170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2517,25169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2517,25174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2517,25172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2518,25178,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2518,25176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2518,25181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2518,25180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2519,25185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2518,25184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2519,25189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2519,25187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2519,25193,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2519,25191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2520,25196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2519,25195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2520,25200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2520,25199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2520,25204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2520,25202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2521,25208,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2521,25206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2521,25211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2521,25210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2522,25215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2521,25214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2522,25219,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2522,25217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2522,25223,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2522,25221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2523,25226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2522,25225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2523,25230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2523,25229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2523,25234,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2523,25232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2524,25238,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2524,25236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2524,25241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2524,25240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2525,25245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2524,25244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2525,25249,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2525,25247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2525,25253,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2525,25251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2526,25256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2525,25255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2526,25260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2526,25259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2526,25264,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2526,25262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2527,25268,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2527,25266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2527,25271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2527,25270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2528,25275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2527,25274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2528,25279,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2528,25277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2528,25283,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2528,25281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2528,25285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2529,25286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2529,25290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2529,25289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2529,25294,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2529,25292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2530,25298,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2530,25296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2530,25301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2530,25300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2531,25305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2530,25304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2531,25309,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2531,25307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2531,25313,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2531,25311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2532,25316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2531,25315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2532,25320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2532,25319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2532,25324,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2532,25322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2533,25328,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2533,25326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2533,25331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2533,25330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2534,25335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2533,25334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2534,25339,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2534,25337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2534,25343,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2534,25341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2535,25346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2534,25345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2535,25350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2535,25349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2535,25354,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2535,25352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2536,25358,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2536,25356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2536,25361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2536,25360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2537,25365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2536,25364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2537,25369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2537,25367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2537,25373,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2537,25371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2538,25376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2537,25375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2538,25380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2538,25379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2538,25384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2538,25382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2539,25388,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2539,25386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2539,25391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2539,25390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2540,25395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2539,25394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2540,25399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2540,25397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2540,25403,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2540,25401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2541,25406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2540,25405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2541,25410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2541,25409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2541,25414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2541,25412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2542,25418,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2542,25416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2542,25421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2542,25420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2543,25425,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2542,25424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2543,25429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2543,25427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2543,25433,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2543,25431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2544,25436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2543,25435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2544,25440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2544,25439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2544,25444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2544,25442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2545,25448,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2545,25446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2545,25451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2545,25450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2546,25455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2545,25454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2546,25459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2546,25457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2546,25463,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2546,25461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2547,25466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2546,25465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2547,25470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2547,25469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2547,25474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2547,25472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2548,25478,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2548,25476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2548,25481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2548,25480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2549,25485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2548,25484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2549,25489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2549,25487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2549,25493,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2549,25491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2550,25496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2549,25495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2550,25499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2550,25500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2550,25504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2550,25502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2551,25508,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2551,25506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2551,25511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2551,25510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2552,25515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2551,25514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2552,25519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2552,25517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2552,25523,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2552,25521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2553,25526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2552,25525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2553,25530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2553,25529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2553,25534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2553,25532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2554,25538,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2554,25536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2554,25541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2554,25540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2555,25545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2554,25544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2555,25549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2555,25547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2555,25553,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2555,25551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2556,25556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2555,25555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2556,25560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2556,25559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2556,25564,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2556,25562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2557,25568,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2557,25566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2557,25571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2557,25570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2558,25575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2557,25574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2558,25579,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2558,25577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2558,25583,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2558,25581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2559,25586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2558,25585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2559,25590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2559,25589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2559,25594,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2559,25592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2560,25598,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2560,25596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2560,25601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2560,25600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2561,25605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2560,25604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2561,25609,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2561,25607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2561,25613,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2561,25611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2562,25616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2561,25615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2562,25620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2562,25619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2562,25624,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2562,25622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2563,25628,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2563,25626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2563,25630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2563,25631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2564,25635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2563,25634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2564,25639,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2564,25637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2564,25643,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2564,25641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2565,25646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2564,25645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2565,25650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2565,25649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2565,25654,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2565,25652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2566,25658,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2566,25656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2566,25661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2566,25660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2567,25665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2566,25664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2567,25669,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2567,25667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2567,25673,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2567,25671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2568,25676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2567,25675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2568,25680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2568,25679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2568,25684,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2568,25682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2569,25688,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2569,25686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2569,25691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2569,25690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2570,25695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2569,25694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2570,25699,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2570,25697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2570,25703,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2570,25701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2571,25706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2570,25705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2571,25710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2571,25709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2571,25714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2571,25712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2572,25718,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2572,25716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2572,25721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2572,25720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2573,25725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2572,25724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2573,25729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2573,25727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2573,25733,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2573,25731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2574,25736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2573,25735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2574,25740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2574,25739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2574,25744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2574,25742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2575,25748,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2575,25746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2575,25751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2575,25750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2576,25755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2575,25754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2576,25759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2576,25757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2576,25763,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2576,25761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2577,25766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2576,25765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2577,25770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2577,25769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2577,25774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2577,25772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2578,25778,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2578,25776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2578,25781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2578,25780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2579,25785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2578,25784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2579,25789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2579,25787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2579,25793,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2579,25791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2580,25796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2579,25795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2580,25800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2580,25799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2580,25804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2580,25802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2581,25808,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2581,25806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2581,25811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2581,25810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2582,25815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2581,25814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2582,25819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2582,25817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2582,25823,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2582,25821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2583,25826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2582,25825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2583,25830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2583,25829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2583,25834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2583,25832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2584,25838,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2584,25836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2584,25841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2584,25840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2584,25844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2585,25845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2585,25849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2585,25847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2585,25853,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2585,25851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2586,25856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2585,25855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2586,25860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2586,25859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2586,25864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2586,25862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2587,25868,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2587,25866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2587,25871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2587,25870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2588,25875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2587,25874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2588,25879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2588,25877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2588,25883,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2588,25881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2589,25886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2588,25885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2589,25890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2589,25889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2589,25894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2589,25892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2590,25898,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2590,25896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2590,25901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2590,25900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2591,25905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2590,25904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2591,25909,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2591,25907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2591,25913,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2591,25911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2592,25916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2591,25915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2592,25920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2592,25919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2592,25924,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2592,25922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2593,25928,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2593,25926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2593,25931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2593,25930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2594,25935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2593,25934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2594,25939,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2594,25937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2594,25943,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2594,25941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2595,25946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2594,25945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2595,25950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2595,25949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2595,25954,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2595,25952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2596,25958,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2596,25956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2596,25961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2596,25960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2597,25965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2596,25964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2597,25969,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2597,25967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2597,25973,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2597,25971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2598,25976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2597,25975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2598,25980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2598,25979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2598,25984,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2598,25982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2599,25988,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2599,25986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2599,25991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2599,25990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2600,25995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2599,25994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2600,25999,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2600,25997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2600,26003,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2600,26001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2601,26006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2600,26005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2601,26010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2601,26009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2601,26014,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2601,26012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2602,26018,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2602,26016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2602,26021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2602,26020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2603,26025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2602,26024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2603,26029,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2603,26027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2603,26033,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2603,26031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2604,26036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2603,26035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2604,26040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2604,26039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2604,26044,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2604,26042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2605,26048,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2605,26046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2605,26051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2605,26050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2606,26055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2605,26054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2606,26059,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2606,26057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2606,26063,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2606,26061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2607,26066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2606,26065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2607,26070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2607,26069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2607,26074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2607,26072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2608,26078,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2608,26076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2608,26081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2608,26080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2609,26085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2608,26084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2609,26089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2609,26087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2609,26093,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2609,26091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2610,26096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2609,26095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2610,26100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2610,26099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2610,26104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2610,26102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2611,26108,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2611,26106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2611,26111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2611,26110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2612,26115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2611,26114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2612,26119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2612,26117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2612,26123,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2612,26121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2613,26126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2612,26125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2613,26130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2613,26129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2613,26134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2613,26132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2614,26138,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2614,26136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2614,26141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2614,26140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2615,26145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2614,26144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2615,26149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2615,26147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2615,26153,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2615,26151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2616,26156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2615,26155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2616,26160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2616,26159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2616,26164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2616,26162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2617,26168,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2617,26166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2617,26171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2617,26170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2618,26175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2617,26174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2618,26179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2618,26177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2618,26183,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2618,26181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2619,26186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2618,26185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2619,26189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2619,26190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2619,26194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2619,26192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2620,26198,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2620,26196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2620,26201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2620,26200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2621,26205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2620,26204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2621,26209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2621,26207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2621,26213,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2621,26211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2622,26216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2621,26215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2622,26220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2622,26219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2622,26224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2622,26222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2623,26228,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2623,26226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2623,26231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2623,26230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2624,26235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2623,26234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2624,26239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2624,26237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2624,26243,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2624,26241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2625,26246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2624,26245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2625,26250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2625,26249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2625,26254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2625,26252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2626,26258,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2626,26256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2626,26261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2626,26260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2627,26265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2626,26264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2627,26269,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2627,26267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2627,26273,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2627,26271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2628,26276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2627,26275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2628,26280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2628,26279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2628,26284,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2628,26282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2629,26288,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2629,26286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2629,26291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2629,26290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2630,26295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2629,26294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2630,26299,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2630,26297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2630,26303,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2630,26301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2631,26306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2630,26305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2631,26310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2631,26309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2631,26314,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2631,26312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2632,26318,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2632,26316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2632,26321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2632,26320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2633,26325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2632,26324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2633,26329,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2633,26327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2633,26333,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2633,26331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2633,26335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2634,26336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2634,26340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2634,26339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2634,26344,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2634,26342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2635,26348,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2635,26346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2635,26351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2635,26350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2636,26355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2635,26354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2636,26359,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2636,26357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2636,26363,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2636,26361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2637,26366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2636,26365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2637,26370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2637,26369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2637,26374,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2637,26372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2638,26378,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2638,26376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2638,26381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2638,26380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2639,26385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2638,26384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2639,26389,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2639,26387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2639,26393,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2639,26391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2640,26396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2639,26395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2640,26400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2640,26399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2640,26404,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2640,26402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2641,26408,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2641,26406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2641,26411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2641,26410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2642,26415,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2641,26414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2642,26419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2642,26417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2642,26423,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2642,26421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2643,26426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2642,26425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2643,26430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2643,26429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2643,26434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2643,26432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2644,26438,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2644,26436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2644,26441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2644,26440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2645,26445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2644,26444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2645,26449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2645,26447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2645,26453,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2645,26451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2646,26456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2645,26455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2646,26460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2646,26459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2646,26464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2646,26462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2647,26468,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2647,26466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2647,26471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2647,26470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2648,26475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2647,26474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2648,26479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2648,26477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2648,26483,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2648,26481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2649,26486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2648,26485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2649,26490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2649,26489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2649,26494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2649,26492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2650,26498,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2650,26496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2650,26501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2650,26500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2651,26505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2650,26504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2651,26509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2651,26507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2651,26513,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2651,26511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2652,26516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2651,26515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2652,26520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2652,26519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2652,26524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2652,26522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2653,26528,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2653,26526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2653,26531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2653,26530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2654,26535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2653,26534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2654,26539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2654,26537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2654,26543,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2654,26541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2655,26546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2654,26545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2655,26550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2655,26549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2655,26554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2655,26552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2656,26558,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2656,26556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2656,26561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2656,26560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2657,26565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2656,26564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2657,26569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2657,26567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2657,26573,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2657,26571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2658,26576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2657,26575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2658,26580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2658,26579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2658,26584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2658,26582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2659,26588,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2659,26586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2659,26591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2659,26590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2660,26595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2659,26594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2660,26599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2660,26597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2660,26603,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2660,26601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2661,26606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2660,26605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2661,26610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2661,26609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2661,26614,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2661,26612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2662,26618,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2662,26616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2662,26621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2662,26620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2663,26625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2662,26624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2663,26629,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2663,26627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2663,26633,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2663,26631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2664,26636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2663,26635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2664,26640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2664,26639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2664,26644,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2664,26642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2665,26648,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2665,26646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2665,26651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2665,26650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2666,26655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2665,26654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2666,26659,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2666,26657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2666,26663,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2666,26661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2667,26666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2666,26665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2667,26670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2667,26669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2667,26674,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2667,26672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2668,26678,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2668,26676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2668,26680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2668,26681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2669,26685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2668,26684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2669,26689,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2669,26687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2669,26693,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2669,26691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2670,26696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2669,26695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2670,26700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2670,26699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2670,26704,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2670,26702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2671,26708,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2671,26706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2671,26711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2671,26710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2672,26715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2671,26714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2672,26719,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2672,26717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2672,26723,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2672,26721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2673,26726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2672,26725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2673,26730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2673,26729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2673,26734,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2673,26732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2674,26738,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2674,26736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2674,26741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2674,26740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2675,26745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2674,26744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2675,26749,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2675,26747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2675,26753,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2675,26751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2676,26756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2675,26755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2676,26760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2676,26759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2676,26764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2676,26762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2677,26768,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2677,26766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2677,26771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2677,26770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2678,26775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2677,26774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2678,26779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2678,26777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2678,26783,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2678,26781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2679,26786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2678,26785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2679,26790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2679,26789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2679,26794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2679,26792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2680,26798,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2680,26796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2680,26801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2680,26800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2681,26805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2680,26804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2681,26809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2681,26807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2681,26813,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2681,26811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2682,26816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2681,26815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2682,26820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2682,26819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2682,26824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2682,26822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2683,26828,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2683,26826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2683,26831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2683,26830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2684,26835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2683,26834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2684,26839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2684,26837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2684,26843,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2684,26841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2685,26846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2684,26845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2685,26850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2685,26849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2685,26854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2685,26852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2686,26858,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2686,26856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2686,26861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2686,26860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2687,26865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2686,26864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2687,26869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2687,26867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2687,26873,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2687,26871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2688,26876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2687,26875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2688,26880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2688,26879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2688,26884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2688,26882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2689,26888,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2689,26886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2689,26891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2689,26890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2689,26894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2690,26895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2690,26899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2690,26897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2690,26903,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2690,26901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2691,26906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2690,26905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2691,26910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2691,26909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2691,26914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2691,26912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2692,26918,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2692,26916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2692,26921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2692,26920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2693,26925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2692,26924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2693,26929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2693,26927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2693,26933,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2693,26931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2694,26936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2693,26935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2694,26940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2694,26939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2694,26944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2694,26942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2695,26948,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2695,26946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2695,26951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2695,26950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2696,26955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2695,26954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2696,26959,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2696,26957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2696,26963,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2696,26961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2697,26966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2696,26965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2697,26970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2697,26969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2697,26974,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2697,26972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2698,26978,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2698,26976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2698,26981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2698,26980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2699,26985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2698,26984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2699,26989,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2699,26987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2699,26993,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2699,26991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2700,26996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2699,26995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2700,27000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2700,26999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2700,27004,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2700,27002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2701,27008,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2701,27006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2701,27011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2701,27010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2702,27015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2701,27014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2702,27019,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2702,27017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2702,27023,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2702,27021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2702,27025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2703,27026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2703,27030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2703,27029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2703,27034,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2703,27032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2704,27038,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2704,27036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2704,27041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2704,27040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2705,27045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2704,27044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2705,27049,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2705,27047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2705,27053,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2705,27051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2706,27056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2705,27055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2706,27060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2706,27059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2706,27064,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2706,27062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2707,27068,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2707,27066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2707,27071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2707,27070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2708,27075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2707,27074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2708,27079,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2708,27077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2708,27083,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2708,27081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2709,27086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2708,27085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2709,27090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2709,27089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2709,27094,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2709,27092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2710,27098,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2710,27096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2710,27101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2710,27100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2711,27105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2710,27104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2711,27109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2711,27107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2711,27113,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2711,27111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2712,27116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2711,27115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2712,27120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2712,27119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2712,27124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2712,27122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2713,27128,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2713,27126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2713,27131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2713,27130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2714,27135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2713,27134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2714,27139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2714,27137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2714,27143,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2714,27141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2715,27146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2714,27145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2715,27150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2715,27149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2715,27154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2715,27152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2716,27158,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2716,27156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2716,27161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2716,27160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2717,27165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2716,27164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2717,27169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2717,27167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2717,27173,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2717,27171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2718,27176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2717,27175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2718,27180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2718,27179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2718,27184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2718,27182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2719,27188,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2719,27186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2719,27191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2719,27190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2720,27195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2719,27194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2720,27199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2720,27197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2720,27203,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2720,27201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2721,27206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2720,27205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2721,27210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2721,27209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2721,27214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2721,27212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2722,27218,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2722,27216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2722,27221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2722,27220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2723,27225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2722,27224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2723,27229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2723,27227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2723,27233,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2723,27231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2724,27236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2723,27235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2724,27239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2724,27240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2724,27244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2724,27242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2725,27248,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2725,27246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2725,27251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2725,27250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2726,27255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2725,27254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2726,27259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2726,27257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2726,27263,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2726,27261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2727,27266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2726,27265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2727,27270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2727,27269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2727,27274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2727,27272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2728,27278,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2728,27276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2728,27281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2728,27280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2729,27285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2728,27284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2729,27289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2729,27287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2729,27293,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2729,27291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2730,27296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2729,27295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2730,27300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2730,27299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2730,27304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2730,27302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2731,27308,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2731,27306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2731,27311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2731,27310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2732,27315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2731,27314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2732,27319,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2732,27317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2732,27323,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2732,27321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2733,27326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2732,27325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2733,27330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2733,27329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2733,27334,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2733,27332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2734,27338,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2734,27336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2734,27341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2734,27340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2735,27345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2734,27344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2735,27349,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2735,27347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2735,27353,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2735,27351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2736,27356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2735,27355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2736,27360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2736,27359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2736,27364,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2736,27362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2737,27368,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2737,27366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2737,27371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2737,27370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2738,27375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2737,27374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2738,27379,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2738,27377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2738,27383,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2738,27381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2738,27385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2739,27386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2739,27390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2739,27389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2739,27394,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2739,27392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2740,27398,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2740,27396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2740,27401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2740,27400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2741,27405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2740,27404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2741,27409,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2741,27407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2741,27413,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2741,27411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2742,27416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2741,27415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2742,27420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2742,27419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2742,27424,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2742,27422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2743,27428,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2743,27426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2743,27431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2743,27430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2744,27435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2743,27434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2744,27439,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2744,27437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2744,27443,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2744,27441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2745,27446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2744,27445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2745,27450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2745,27449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2745,27454,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2745,27452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2746,27458,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2746,27456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2746,27461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2746,27460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2747,27465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2746,27464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2747,27469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2747,27467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2747,27473,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2747,27471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2748,27476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2747,27475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2748,27480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2748,27479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2748,27484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2748,27482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2749,27488,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2749,27486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2749,27491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2749,27490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2750,27495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2749,27494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2750,27499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2750,27497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2750,27503,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2750,27501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2751,27506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2750,27505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2751,27510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2751,27509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2751,27514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2751,27512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2752,27518,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2752,27516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2752,27521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2752,27520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2753,27525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2752,27524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2753,27529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2753,27527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2753,27533,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2753,27531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2754,27536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2753,27535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2754,27540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2754,27539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2754,27544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2754,27542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2755,27548,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2755,27546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2755,27551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2755,27550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2756,27555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2755,27554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2756,27559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2756,27557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2756,27563,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2756,27561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2757,27566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2756,27565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2757,27570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2757,27569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2757,27574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2757,27572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2758,27578,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2758,27576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2758,27581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2758,27580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2758,27584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2759,27585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2759,27589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2759,27587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2759,27593,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2759,27591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2760,27596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2759,27595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2760,27600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2760,27599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2760,27604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2760,27602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2761,27608,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2761,27606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2761,27611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2761,27610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2762,27615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2761,27614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2762,27619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2762,27617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2762,27623,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2762,27621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2763,27626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2762,27625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2763,27630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2763,27629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2763,27634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2763,27632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2764,27638,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2764,27636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2764,27641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2764,27640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2765,27645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2764,27644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2765,27649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2765,27647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2765,27653,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2765,27651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2766,27656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2765,27655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2766,27660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2766,27659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2766,27664,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2766,27662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2767,27668,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2767,27666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2767,27671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2767,27670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2768,27675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2767,27674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2768,27679,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2768,27677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2768,27683,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2768,27681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2769,27686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2768,27685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2769,27690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2769,27689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2769,27694,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2769,27692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2770,27698,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2770,27696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2770,27701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2770,27700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2771,27705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2770,27704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2771,27709,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2771,27707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2771,27713,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2771,27711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2772,27716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2771,27715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2772,27720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2772,27719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2772,27724,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2772,27722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2773,27728,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2773,27726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2773,27730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2773,27731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2774,27735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2773,27734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2774,27739,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2774,27737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2774,27743,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2774,27741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2775,27746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2774,27745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2775,27750,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2775,27749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2775,27754,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2775,27752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2776,27758,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2776,27756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2776,27761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2776,27760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2777,27765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2776,27764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2777,27769,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2777,27767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2777,27773,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2777,27771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2778,27776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2777,27775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2778,27780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2778,27779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2778,27784,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2778,27782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2779,27788,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2779,27786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2779,27791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2779,27790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2780,27795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2779,27794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2780,27799,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2780,27797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2780,27803,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2780,27801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2781,27806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2780,27805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2781,27810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2781,27809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2781,27814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2781,27812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2782,27818,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2782,27816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2782,27821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2782,27820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2783,27825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2782,27824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2783,27829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2783,27827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2783,27833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2783,27831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2784,27836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2783,27835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2784,27840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2784,27839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2784,27844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2784,27842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2785,27848,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2785,27846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2785,27851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2785,27850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2786,27855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2785,27854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2786,27859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2786,27857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2786,27863,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2786,27861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2787,27866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2786,27865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2787,27870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2787,27869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2787,27874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2787,27872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2788,27878,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2788,27876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2788,27881,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2788,27880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2789,27885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2788,27884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2789,27889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2789,27887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2789,27893,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2789,27891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2790,27896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2789,27895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2790,27900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2790,27899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2790,27904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2790,27902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2791,27908,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2791,27906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2791,27911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2791,27910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2792,27915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2791,27914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2792,27919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2792,27917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2792,27923,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2792,27921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2793,27926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2792,27925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2793,27930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2793,27929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2793,27934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2793,27932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2794,27938,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2794,27936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2794,27941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2794,27940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2795,27945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2794,27944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2795,27949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2795,27947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2795,27953,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2795,27951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2796,27956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2795,27955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2796,27960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2796,27959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2796,27964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2796,27962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2797,27968,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2797,27966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2797,27971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2797,27970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2798,27975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2797,27974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2798,27979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2798,27977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2798,27983,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2798,27981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2799,27986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2798,27985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2799,27990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2799,27989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2799,27994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2799,27992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2800,27998,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2800,27996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2800,28001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2800,28000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2801,28005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2800,28004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2801,28009,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2801,28007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2801,28013,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2801,28011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2802,28016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2801,28015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2802,28020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2802,28019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2802,28024,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2802,28022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2803,28028,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2803,28026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2803,28031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2803,28030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2804,28035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2803,28034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2804,28039,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2804,28037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2804,28043,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2804,28041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2805,28046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2804,28045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2805,28050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2805,28049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2805,28054,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2805,28052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2806,28058,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2806,28056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2806,28061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2806,28060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2807,28065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2806,28064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2807,28069,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2807,28067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2807,28073,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2807,28071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2807,28075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2808,28076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2808,28080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2808,28079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2808,28084,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2808,28082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2809,28088,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2809,28086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2809,28091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2809,28090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2810,28095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2809,28094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2810,28099,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2810,28097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2810,28103,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2810,28101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2811,28106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2810,28105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2811,28110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2811,28109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2811,28114,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2811,28112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2812,28118,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2812,28116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2812,28121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2812,28120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2813,28125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2812,28124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2813,28129,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2813,28127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2813,28133,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2813,28131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2814,28136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2813,28135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2814,28140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2814,28139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2814,28144,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2814,28142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2815,28148,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2815,28146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2815,28151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2815,28150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2816,28155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2815,28154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2816,28159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2816,28157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2816,28163,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2816,28161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2817,28166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2816,28165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2817,28170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2817,28169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2817,28174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2817,28172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2818,28178,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2818,28176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2818,28181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2818,28180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2819,28185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2818,28184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2819,28189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2819,28187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2819,28193,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2819,28191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2820,28196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2819,28195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2820,28200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2820,28199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2820,28204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2820,28202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2821,28208,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2821,28206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2821,28211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2821,28210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2822,28215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2821,28214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2822,28219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2822,28217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2822,28223,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2822,28221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2823,28226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2822,28225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2823,28230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2823,28229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2823,28234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2823,28232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2824,28238,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2824,28236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2824,28241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2824,28240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2825,28245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2824,28244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2825,28249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2825,28247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2825,28253,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2825,28251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2826,28256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2825,28255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2826,28260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2826,28259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2826,28264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2826,28262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2827,28268,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2827,28266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2827,28271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2827,28270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2828,28275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2827,28274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2828,28279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2828,28277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2828,28283,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2828,28281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2829,28286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2828,28285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2829,28289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2829,28290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2829,28294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2829,28292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2830,28298,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2830,28296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2830,28301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2830,28300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2831,28305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2830,28304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2831,28309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2831,28307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2831,28313,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2831,28311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2832,28316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2831,28315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2832,28320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2832,28319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2832,28324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2832,28322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2833,28328,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2833,28326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2833,28331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2833,28330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2834,28335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2833,28334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2834,28339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2834,28337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2834,28343,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2834,28341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2835,28346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2834,28345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2835,28350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2835,28349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2835,28354,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2835,28352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2836,28358,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2836,28356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2836,28361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2836,28360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2837,28365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2836,28364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2837,28369,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2837,28367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2837,28373,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2837,28371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2838,28376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2837,28375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2838,28380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2838,28379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2838,28384,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2838,28382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2839,28388,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2839,28386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2839,28391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2839,28390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2840,28395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2839,28394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2840,28399,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2840,28397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2840,28403,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2840,28401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2841,28406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2840,28405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2841,28410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2841,28409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2841,28414,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2841,28412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2842,28418,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2842,28416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2842,28421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2842,28420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2843,28425,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2842,28424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2843,28429,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2843,28427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2843,28433,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2843,28431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2844,28436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2843,28435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2844,28440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2844,28439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2844,28444,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2844,28442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2845,28448,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2845,28446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2845,28451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2845,28450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2846,28455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2845,28454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2846,28459,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2846,28457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2846,28463,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2846,28461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2847,28466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2846,28465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2847,28470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2847,28469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2847,28474,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2847,28472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2848,28478,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2848,28476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2848,28481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2848,28480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2849,28485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2848,28484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2849,28489,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2849,28487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2849,28493,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2849,28491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2850,28496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2849,28495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2850,28500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2850,28499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2850,28504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2850,28502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2851,28508,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2851,28506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2851,28511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2851,28510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2852,28515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2851,28514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2852,28519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2852,28517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2852,28523,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2852,28521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2853,28526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2852,28525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2853,28530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2853,28529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2853,28534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2853,28532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2854,28538,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2854,28536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2854,28541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2854,28540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2855,28545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2854,28544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2855,28549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2855,28547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2855,28553,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2855,28551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2856,28556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2855,28555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2856,28560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2856,28559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2856,28564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2856,28562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2857,28568,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2857,28566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2857,28571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2857,28570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2858,28575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2857,28574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2858,28579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2858,28577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2858,28583,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2858,28581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2859,28586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2858,28585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2859,28590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2859,28589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2859,28594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2859,28592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2860,28598,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2860,28596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2860,28601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2860,28600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2861,28605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2860,28604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2861,28609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2861,28607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2861,28613,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2861,28611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2862,28616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2861,28615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2862,28620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2862,28619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2862,28624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2862,28622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2863,28628,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2863,28626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2863,28631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2863,28630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2863,28634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2864,28635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2864,28639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2864,28637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2864,28643,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2864,28641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2865,28646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2864,28645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2865,28650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2865,28649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2865,28654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2865,28652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2866,28658,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2866,28656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2866,28661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2866,28660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2867,28665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2866,28664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2867,28669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2867,28667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2867,28673,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2867,28671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2868,28676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2867,28675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2868,28680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2868,28679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2868,28684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2868,28682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2869,28688,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2869,28686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2869,28691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2869,28690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2870,28695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2869,28694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2870,28699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2870,28697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2870,28703,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2870,28701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2871,28706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2870,28705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2871,28710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2871,28709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2871,28714,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2871,28712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2872,28718,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2872,28716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2872,28721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2872,28720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2873,28725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2872,28724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2873,28729,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2873,28727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2873,28733,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2873,28731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2874,28736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2873,28735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2874,28740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2874,28739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2874,28744,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2874,28742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2875,28748,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2875,28746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2875,28751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2875,28750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2876,28755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2875,28754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2876,28759,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2876,28757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2876,28763,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2876,28761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2877,28766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2876,28765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2877,28770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2877,28769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2877,28774,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2877,28772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2878,28778,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2878,28776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2878,28780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2878,28781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2879,28785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2878,28784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2879,28789,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2879,28787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2879,28793,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2879,28791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2880,28796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2879,28795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2880,28800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2880,28799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2880,28804,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2880,28802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2881,28808,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2881,28806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2881,28811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2881,28810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2882,28815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2881,28814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2882,28819,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2882,28817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2882,28823,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2882,28821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2883,28826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2882,28825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2883,28830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2883,28829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2883,28834,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2883,28832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2884,28838,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2884,28836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2884,28841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2884,28840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2885,28845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2884,28844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2885,28849,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2885,28847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2885,28853,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2885,28851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2886,28856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2885,28855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2886,28860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2886,28859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2886,28864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2886,28862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2887,28868,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2887,28866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2887,28871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2887,28870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2888,28875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2887,28874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2888,28879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2888,28877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2888,28883,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2888,28881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2889,28886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2888,28885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2889,28890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2889,28889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2889,28894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2889,28892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2890,28898,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2890,28896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2890,28901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2890,28900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2891,28905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2890,28904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2891,28909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2891,28907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2891,28913,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2891,28911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2892,28916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2891,28915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2892,28920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2892,28919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2892,28924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2892,28922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2893,28928,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2893,28926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2893,28931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2893,28930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2894,28935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2893,28934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2894,28939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2894,28937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2894,28943,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2894,28941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2895,28946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2894,28945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2895,28950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2895,28949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2895,28954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2895,28952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2896,28958,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2896,28956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2896,28961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2896,28960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2897,28965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2896,28964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2897,28969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2897,28967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2897,28973,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2897,28971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2898,28976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2897,28975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2898,28980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2898,28979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2898,28984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2898,28982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2899,28988,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2899,28986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2899,28991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2899,28990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2900,28995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2899,28994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2900,28999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2900,28997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2900,29003,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2900,29001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2901,29006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2900,29005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2901,29010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2901,29009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2901,29014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2901,29012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2902,29018,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2902,29016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2902,29021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2902,29020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2903,29025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2902,29024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2903,29029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2903,29027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2903,29033,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2903,29031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2904,29036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2903,29035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2904,29040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2904,29039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2904,29044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2904,29042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2905,29048,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2905,29046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2905,29051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2905,29050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2906,29055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2905,29054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2906,29059,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2906,29057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2906,29063,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2906,29061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2907,29066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2906,29065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2907,29070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2907,29069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2907,29074,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2907,29072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2908,29078,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2908,29076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2908,29081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2908,29080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2909,29085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2908,29084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2909,29089,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2909,29087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2909,29093,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2909,29091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2910,29096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2909,29095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2910,29100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2910,29099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2910,29104,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2910,29102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2911,29108,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2911,29106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2911,29111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2911,29110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2912,29115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2911,29114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2912,29119,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2912,29117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2912,29123,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2912,29121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2912,29125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2913,29126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2913,29130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2913,29129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2913,29134,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2913,29132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2914,29138,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2914,29136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2914,29141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2914,29140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2915,29145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2914,29144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2915,29149,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2915,29147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2915,29153,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2915,29151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2916,29156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2915,29155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2916,29160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2916,29159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2916,29164,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2916,29162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2917,29168,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2917,29166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2917,29171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2917,29170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2918,29175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2917,29174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2918,29179,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2918,29177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2918,29183,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2918,29181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2919,29186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2918,29185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2919,29190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2919,29189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2919,29194,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2919,29192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2920,29198,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2920,29196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2920,29201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2920,29200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2921,29205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2920,29204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2921,29209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2921,29207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2921,29213,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2921,29211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2922,29216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2921,29215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2922,29220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2922,29219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2922,29224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2922,29222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2923,29228,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2923,29226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2923,29231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2923,29230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2924,29235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2923,29234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2924,29239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2924,29237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2924,29243,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2924,29241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2925,29246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2924,29245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2925,29250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2925,29249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2925,29254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2925,29252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2926,29258,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2926,29256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2926,29261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2926,29260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2927,29265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2926,29264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2927,29269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2927,29267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2927,29273,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2927,29271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2928,29276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2927,29275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2928,29280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2928,29279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2928,29284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2928,29282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2929,29288,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2929,29286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2929,29291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2929,29290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2930,29295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2929,29294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2930,29299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2930,29297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2930,29303,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2930,29301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2931,29306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2930,29305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2931,29310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2931,29309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2931,29314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2931,29312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2932,29318,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2932,29316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2932,29321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2932,29320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2933,29325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2932,29324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2933,29329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2933,29327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2933,29333,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2933,29331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2934,29336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2933,29335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2934,29339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2934,29340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2934,29344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2934,29342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2935,29348,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2935,29346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2935,29351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2935,29350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2936,29355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2935,29354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2936,29359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2936,29357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2936,29363,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2936,29361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2937,29366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2936,29365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2937,29370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2937,29369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2937,29374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2937,29372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2938,29378,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2938,29376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2938,29381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2938,29380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2939,29385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2938,29384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2939,29389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2939,29387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2939,29393,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2939,29391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2940,29396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2939,29395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2940,29400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2940,29399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2940,29404,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2940,29402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2941,29408,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2941,29406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2941,29411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2941,29410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2942,29415,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2941,29414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2942,29419,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2942,29417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2942,29423,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2942,29421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2943,29426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2942,29425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2943,29430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2943,29429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2943,29434,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2943,29432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2944,29438,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2944,29436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2944,29441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2944,29440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2945,29445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2944,29444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2945,29449,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2945,29447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2945,29453,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2945,29451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2946,29456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2945,29455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2946,29460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2946,29459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2946,29464,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2946,29462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2947,29468,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2947,29466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2947,29470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2947,29471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2948,29475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2947,29474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2948,29479,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2948,29477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2948,29483,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2948,29481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2949,29486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2948,29485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2949,29490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2949,29489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2949,29494,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2949,29492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2950,29498,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2950,29496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2950,29501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2950,29500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2951,29505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2950,29504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2951,29509,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2951,29507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2951,29513,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2951,29511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2952,29516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2951,29515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2952,29520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2952,29519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2952,29524,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2952,29522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2953,29528,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2953,29526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2953,29531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2953,29530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2954,29535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2953,29534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2954,29539,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2954,29537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2954,29543,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2954,29541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2955,29546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2954,29545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2955,29550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2955,29549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2955,29554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2955,29552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2956,29558,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2956,29556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2956,29561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2956,29560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2957,29565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2956,29564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2957,29569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2957,29567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2957,29573,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2957,29571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2958,29576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2957,29575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2958,29580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2958,29579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2958,29584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2958,29582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2959,29588,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2959,29586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2959,29591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2959,29590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2960,29595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2959,29594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2960,29599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2960,29597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2960,29603,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2960,29601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2961,29606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2960,29605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2961,29610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2961,29609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2961,29614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2961,29612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2962,29618,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2962,29616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2962,29621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2962,29620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2963,29625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2962,29624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2963,29629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2963,29627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2963,29633,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2963,29631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2964,29636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2963,29635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2964,29640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2964,29639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2964,29644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2964,29642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2965,29648,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2965,29646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2965,29651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2965,29650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2966,29655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2965,29654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2966,29659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2966,29657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2966,29663,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2966,29661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2967,29666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2966,29665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2967,29670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2967,29669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2967,29674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2967,29672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2968,29678,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2968,29676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2968,29681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2968,29680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2968,29684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2969,29685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2969,29689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2969,29687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2969,29693,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2969,29691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2970,29696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2969,29695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2970,29700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2970,29699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2970,29704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2970,29702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2971,29708,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2971,29706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2971,29711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2971,29710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2972,29715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2971,29714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2972,29719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2972,29717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2972,29723,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2972,29721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2973,29726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2972,29725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2973,29730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2973,29729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2973,29734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2973,29732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2974,29738,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2974,29736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2974,29741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2974,29740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2975,29745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2974,29744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2975,29749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2975,29747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2975,29753,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2975,29751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2976,29756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2975,29755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2976,29760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2976,29759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2976,29764,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2976,29762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2977,29768,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2977,29766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2977,29771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2977,29770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2978,29775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2977,29774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2978,29779,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2978,29777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2978,29783,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2978,29781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2979,29786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2978,29785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2979,29790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2979,29789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2979,29794,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2979,29792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2980,29798,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2980,29796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2980,29801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2980,29800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2981,29805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2980,29804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2981,29809,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2981,29807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2981,29813,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2981,29811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2982,29816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2981,29815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2982,29820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2982,29819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2982,29824,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2982,29822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2983,29828,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2983,29826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2983,29831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2983,29830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2984,29835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2983,29834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2984,29839,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2984,29837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2984,29843,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2984,29841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2985,29846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2984,29845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2985,29850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2985,29849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2985,29854,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2985,29852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2986,29858,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2986,29856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2986,29861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2986,29860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2987,29865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2986,29864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2987,29869,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2987,29867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2987,29873,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2987,29871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2988,29876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2987,29875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2988,29880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2988,29879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2988,29884,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2988,29882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2989,29888,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2989,29886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2989,29891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2989,29890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2990,29895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2989,29894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2990,29899,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2990,29897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2990,29903,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2990,29901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2991,29906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2990,29905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2991,29910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2991,29909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2991,29914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2991,29912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2992,29918,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2992,29916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2992,29921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2992,29920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2993,29925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2992,29924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2993,29929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2993,29927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2993,29933,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2993,29931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2994,29936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2993,29935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2994,29940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2994,29939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2994,29944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2994,29942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2995,29948,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2995,29946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2995,29951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2995,29950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2996,29955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2995,29954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2996,29959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2996,29957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2996,29963,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2996,29961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2997,29966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2996,29965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2997,29970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2997,29969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2997,29974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2997,29972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2998,29978,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2998,29976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2998,29981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2998,29980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2999,29985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2998,29984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2999,29989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2999,29987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2999,29993,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2999,29991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3000,29996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=2999,29995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3000,30000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3000,29999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3000,30004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3000,30002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3001,30008,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3001,30006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3001,30011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3001,30010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3002,30015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3001,30014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3002,30019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3002,30017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3002,30023,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3002,30021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3003,30026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3002,30025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3003,30029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3003,30030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3003,30034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3003,30032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3004,30038,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3004,30036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3004,30041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3004,30040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3005,30045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3004,30044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3005,30049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3005,30047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3005,30053,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3005,30051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3006,30056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3005,30055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3006,30060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3006,30059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3006,30064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3006,30062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3007,30068,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3007,30066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3007,30071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3007,30070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3008,30075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3007,30074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3008,30079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3008,30077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3008,30083,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3008,30081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3009,30086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3008,30085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3009,30090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3009,30089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3009,30094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3009,30092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3010,30098,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3010,30096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3010,30101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3010,30100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3011,30105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3010,30104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3011,30109,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3011,30107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3011,30113,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3011,30111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3012,30116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3011,30115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3012,30120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3012,30119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3012,30124,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3012,30122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3013,30128,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3013,30126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3013,30131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3013,30130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3014,30135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3013,30134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3014,30139,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3014,30137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3014,30143,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3014,30141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3015,30146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3014,30145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3015,30150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3015,30149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3015,30154,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3015,30152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3016,30158,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3016,30156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3016,30161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3016,30160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3017,30165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3016,30164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3017,30169,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3017,30167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3017,30173,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3017,30171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3017,30175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3018,30176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3018,30180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3018,30179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3018,30184,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3018,30182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3019,30188,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3019,30186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3019,30191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3019,30190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3020,30195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3019,30194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3020,30199,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3020,30197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3020,30203,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3020,30201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3021,30206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3020,30205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3021,30210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3021,30209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3021,30214,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3021,30212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3022,30218,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3022,30216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3022,30221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3022,30220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3023,30225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3022,30224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3023,30229,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3023,30227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3023,30233,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3023,30231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3024,30236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3023,30235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3024,30240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3024,30239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3024,30244,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3024,30242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3025,30248,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3025,30246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3025,30251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3025,30250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3026,30255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3025,30254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3026,30259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3026,30257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3026,30263,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3026,30261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3027,30266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3026,30265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3027,30270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3027,30269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3027,30274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3027,30272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3028,30278,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3028,30276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3028,30281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3028,30280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3029,30285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3028,30284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3029,30289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3029,30287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3029,30293,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3029,30291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3030,30296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3029,30295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3030,30300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3030,30299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3030,30304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3030,30302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3031,30308,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3031,30306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3031,30311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3031,30310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3032,30315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3031,30314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3032,30319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3032,30317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3032,30323,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3032,30321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3033,30326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3032,30325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3033,30330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3033,30329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3033,30334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3033,30332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3034,30338,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3034,30336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3034,30341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3034,30340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3035,30345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3034,30344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3035,30349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3035,30347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3035,30353,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3035,30351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3036,30356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3035,30355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3036,30360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3036,30359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3036,30364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3036,30362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3037,30368,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3037,30366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3037,30371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3037,30370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3038,30375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3037,30374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3038,30379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3038,30377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3038,30383,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3038,30381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3039,30386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3038,30385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3039,30390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3039,30389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3039,30394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3039,30392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3040,30398,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3040,30396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3040,30401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3040,30400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3041,30405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3040,30404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3041,30409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3041,30407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3041,30413,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3041,30411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3042,30416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3041,30415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3042,30420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3042,30419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3042,30424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3042,30422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3043,30428,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3043,30426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3043,30431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3043,30430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3044,30435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3043,30434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3044,30439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3044,30437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3044,30443,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3044,30441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3045,30446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3044,30445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3045,30450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3045,30449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3045,30454,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3045,30452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3046,30458,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3046,30456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3046,30461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3046,30460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3047,30465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3046,30464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3047,30469,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3047,30467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3047,30473,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3047,30471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3048,30476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3047,30475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3048,30480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3048,30479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3048,30484,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3048,30482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3049,30488,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3049,30486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3049,30491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3049,30490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3050,30495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3049,30494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3050,30499,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3050,30497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3050,30503,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3050,30501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3051,30506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3050,30505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3051,30510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3051,30509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3051,30514,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3051,30512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3052,30518,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3052,30516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3052,30520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3052,30521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3053,30525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3052,30524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3053,30529,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3053,30527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3053,30533,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3053,30531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3054,30536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3053,30535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3054,30540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3054,30539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3054,30544,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3054,30542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3055,30548,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3055,30546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3055,30551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3055,30550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3056,30555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3055,30554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3056,30559,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3056,30557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3056,30563,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3056,30561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3057,30566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3056,30565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3057,30570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3057,30569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3057,30574,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3057,30572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3058,30578,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3058,30576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3058,30581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3058,30580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3059,30585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3058,30584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3059,30589,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3059,30587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3059,30593,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3059,30591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3060,30596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3059,30595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3060,30600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3060,30599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3060,30604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3060,30602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3061,30608,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3061,30606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3061,30611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3061,30610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3062,30615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3061,30614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3062,30619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3062,30617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3062,30623,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3062,30621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3063,30626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3062,30625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3063,30630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3063,30629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3063,30634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3063,30632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3064,30638,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3064,30636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3064,30641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3064,30640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3065,30645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3064,30644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3065,30649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3065,30647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3065,30653,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3065,30651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3066,30656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3065,30655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3066,30660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3066,30659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3066,30664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3066,30662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3067,30668,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3067,30666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3067,30671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3067,30670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3068,30675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3067,30674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3068,30679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3068,30677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3068,30683,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3068,30681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3069,30686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3068,30685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3069,30690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3069,30689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3069,30694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3069,30692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3070,30698,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3070,30696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3070,30701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3070,30700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3071,30705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3070,30704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3071,30709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3071,30707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3071,30713,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3071,30711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3072,30716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3071,30715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3072,30720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3072,30719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3072,30724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3072,30722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3073,30728,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3073,30726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3073,30731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3073,30730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3073,30734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3074,30735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3074,30739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3074,30737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3074,30743,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3074,30741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3075,30746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3074,30745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3075,30750,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3075,30749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3075,30754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3075,30752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3076,30758,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3076,30756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3076,30761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3076,30760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3077,30765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3076,30764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3077,30769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3077,30767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3077,30773,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3077,30771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3078,30776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3077,30775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3078,30780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3078,30779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3078,30784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3078,30782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3079,30788,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3079,30786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3079,30791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3079,30790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3080,30795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3079,30794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3080,30799,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3080,30797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3080,30803,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3080,30801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3081,30806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3080,30805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3081,30810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3081,30809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3081,30814,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3081,30812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3082,30818,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3082,30816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3082,30821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3082,30820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3083,30825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3082,30824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3083,30829,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3083,30827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3083,30833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3083,30831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3084,30836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3083,30835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3084,30840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3084,30839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3084,30844,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3084,30842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3085,30848,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3085,30846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3085,30851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3085,30850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3086,30855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3085,30854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3086,30859,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3086,30857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3086,30863,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3086,30861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3086,30865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3087,30866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3087,30870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3087,30869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3087,30874,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3087,30872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3088,30878,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3088,30876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3088,30881,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3088,30880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3089,30885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3088,30884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3089,30889,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3089,30887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3089,30893,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3089,30891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3090,30896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3089,30895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3090,30900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3090,30899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3090,30904,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3090,30902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3091,30908,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3091,30906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3091,30911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3091,30910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3092,30915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3091,30914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3092,30919,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3092,30917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3092,30923,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3092,30921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3093,30926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3092,30925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3093,30930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3093,30929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3093,30934,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3093,30932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3094,30938,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3094,30936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3094,30941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3094,30940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3095,30945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3094,30944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3095,30949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3095,30947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3095,30953,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3095,30951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3096,30956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3095,30955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3096,30960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3096,30959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3096,30964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3096,30962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3097,30968,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3097,30966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3097,30971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3097,30970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3098,30975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3097,30974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3098,30979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3098,30977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3098,30983,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3098,30981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3099,30986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3098,30985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3099,30990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3099,30989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3099,30994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3099,30992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3100,30998,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3100,30996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3100,31001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3100,31000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3101,31005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3100,31004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3101,31009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3101,31007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3101,31013,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3101,31011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3102,31016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3101,31015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3102,31020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3102,31019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3102,31024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3102,31022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3103,31028,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3103,31026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3103,31031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3103,31030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3104,31035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3103,31034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3104,31039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3104,31037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3104,31043,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3104,31041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3105,31046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3104,31045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3105,31050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3105,31049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3105,31054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3105,31052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3106,31058,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3106,31056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3106,31061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3106,31060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3107,31065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3106,31064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3107,31069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3107,31067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3107,31073,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3107,31071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3108,31076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3107,31075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3108,31079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3108,31080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3108,31084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3108,31082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3109,31088,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3109,31086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3109,31091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3109,31090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3110,31095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3109,31094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3110,31099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3110,31097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3110,31103,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3110,31101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3111,31106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3110,31105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3111,31110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3111,31109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3111,31114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3111,31112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3112,31118,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3112,31116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3112,31121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3112,31120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3113,31125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3112,31124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3113,31129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3113,31127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3113,31133,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3113,31131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3114,31136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3113,31135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3114,31140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3114,31139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3114,31144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3114,31142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3115,31148,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3115,31146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3115,31151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3115,31150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3116,31155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3115,31154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3116,31159,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3116,31157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3116,31163,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3116,31161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3117,31166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3116,31165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3117,31170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3117,31169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3117,31174,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3117,31172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3118,31178,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3118,31176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3118,31181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3118,31180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3119,31185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3118,31184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3119,31189,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3119,31187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3119,31193,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3119,31191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3120,31196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3119,31195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3120,31200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3120,31199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3120,31204,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3120,31202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3121,31208,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3121,31206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3121,31211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3121,31210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3122,31215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3121,31214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3122,31219,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3122,31217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3122,31223,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3122,31221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3122,31225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3123,31226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3123,31230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3123,31229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3123,31234,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3123,31232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3124,31238,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3124,31236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3124,31241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3124,31240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3125,31245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3124,31244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3125,31249,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3125,31247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3125,31253,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3125,31251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3126,31256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3125,31255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3126,31260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3126,31259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3126,31264,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3126,31262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3127,31268,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3127,31266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3127,31271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3127,31270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3128,31275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3127,31274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3128,31279,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3128,31277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3128,31283,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3128,31281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3129,31286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3128,31285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3129,31290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3129,31289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3129,31294,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3129,31292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3130,31298,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3130,31296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3130,31301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3130,31300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3131,31305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3130,31304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3131,31309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3131,31307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3131,31313,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3131,31311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3132,31316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3131,31315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3132,31320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3132,31319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3132,31324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3132,31322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3133,31328,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3133,31326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3133,31331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3133,31330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3134,31335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3133,31334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3134,31339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3134,31337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3134,31343,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3134,31341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3135,31346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3134,31345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3135,31350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3135,31349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3135,31354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3135,31352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3136,31358,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3136,31356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3136,31361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3136,31360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3137,31365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3136,31364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3137,31369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3137,31367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3137,31373,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3137,31371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3138,31376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3137,31375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3138,31380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3138,31379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3138,31384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3138,31382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3139,31388,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3139,31386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3139,31391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3139,31390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3140,31395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3139,31394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3140,31399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3140,31397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3140,31403,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3140,31401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3141,31406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3140,31405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3141,31410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3141,31409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3141,31414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3141,31412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3142,31418,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3142,31416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3142,31421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3142,31420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3142,31424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3143,31425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3143,31429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3143,31427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3143,31433,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3143,31431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3144,31436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3143,31435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3144,31440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3144,31439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3144,31444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3144,31442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3145,31448,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3145,31446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3145,31451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3145,31450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3146,31455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3145,31454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3146,31459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3146,31457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3146,31463,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3146,31461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3147,31466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3146,31465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3147,31470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3147,31469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3147,31474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3147,31472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3148,31478,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3148,31476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3148,31481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3148,31480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3149,31485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3148,31484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3149,31489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3149,31487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3149,31493,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3149,31491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3150,31496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3149,31495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3150,31500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3150,31499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3150,31504,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3150,31502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3151,31508,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3151,31506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3151,31511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3151,31510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3152,31515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3151,31514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3152,31519,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3152,31517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3152,31523,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3152,31521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3153,31526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3152,31525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3153,31530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3153,31529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3153,31534,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3153,31532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3154,31538,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3154,31536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3154,31541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3154,31540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3155,31545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3154,31544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3155,31549,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3155,31547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3155,31553,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3155,31551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3156,31556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3155,31555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3156,31560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3156,31559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3156,31564,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3156,31562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3157,31568,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3157,31566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3157,31570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3157,31571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3158,31575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3157,31574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3158,31579,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3158,31577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3158,31583,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3158,31581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3159,31586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3158,31585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3159,31590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3159,31589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3159,31594,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3159,31592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3160,31598,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3160,31596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3160,31601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3160,31600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3161,31605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3160,31604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3161,31609,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3161,31607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3161,31613,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3161,31611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3162,31616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3161,31615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3162,31620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3162,31619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3162,31624,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3162,31622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3163,31628,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3163,31626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3163,31631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3163,31630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3164,31635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3163,31634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3164,31639,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3164,31637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3164,31643,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3164,31641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3165,31646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3164,31645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3165,31650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3165,31649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3165,31654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3165,31652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3166,31658,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3166,31656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3166,31661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3166,31660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3167,31665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3166,31664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3167,31669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3167,31667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3167,31673,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3167,31671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3168,31676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3167,31675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3168,31680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3168,31679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3168,31684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3168,31682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3169,31688,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3169,31686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3169,31691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3169,31690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3170,31695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3169,31694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3170,31699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3170,31697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3170,31703,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3170,31701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3171,31706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3170,31705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3171,31710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3171,31709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3171,31714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3171,31712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3172,31718,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3172,31716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3172,31721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3172,31720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3173,31725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3172,31724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3173,31729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3173,31727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3173,31733,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3173,31731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3174,31736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3173,31735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3174,31740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3174,31739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3174,31744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3174,31742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3175,31748,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3175,31746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3175,31751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3175,31750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3176,31755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3175,31754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3176,31759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3176,31757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3176,31763,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3176,31761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3177,31766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3176,31765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3177,31770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3177,31769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3177,31774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3177,31772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3178,31778,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3178,31776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3178,31781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3178,31780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3178,31784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3179,31785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3179,31789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3179,31787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3179,31793,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3179,31791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3180,31796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3179,31795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3180,31800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3180,31799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3180,31804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3180,31802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3181,31808,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3181,31806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3181,31811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3181,31810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3182,31815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3181,31814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3182,31819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3182,31817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3182,31823,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3182,31821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3183,31826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3182,31825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3183,31830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3183,31829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3183,31834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3183,31832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3184,31838,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3184,31836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3184,31841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3184,31840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3185,31845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3184,31844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3185,31849,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3185,31847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3185,31853,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3185,31851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3186,31856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3185,31855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3186,31860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3186,31859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3186,31864,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3186,31862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3187,31868,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3187,31866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3187,31871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3187,31870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3188,31875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3187,31874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3188,31879,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3188,31877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3188,31883,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3188,31881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3189,31886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3188,31885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3189,31890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3189,31889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3189,31894,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3189,31892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3190,31898,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3190,31896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3190,31901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3190,31900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3191,31905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3190,31904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3191,31909,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3191,31907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3191,31913,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3191,31911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3191,31915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3192,31916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3192,31920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3192,31919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3192,31924,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3192,31922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3193,31928,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3193,31926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3193,31931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3193,31930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3194,31935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3193,31934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3194,31939,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3194,31937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3194,31943,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3194,31941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3195,31946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3194,31945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3195,31950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3195,31949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3195,31954,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3195,31952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3196,31958,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3196,31956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3196,31961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3196,31960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3197,31965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3196,31964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3197,31969,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3197,31967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3197,31973,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3197,31971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3198,31976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3197,31975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3198,31980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3198,31979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3198,31984,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3198,31982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3199,31988,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3199,31986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3199,31991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3199,31990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3200,31995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3199,31994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3200,31999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3200,31997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3200,32003,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3200,32001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3201,32006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3200,32005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3201,32010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3201,32009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3201,32014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3201,32012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3202,32018,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3202,32016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3202,32021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3202,32020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3203,32025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3202,32024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3203,32029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3203,32027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3203,32033,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3203,32031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3204,32036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3203,32035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3204,32040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3204,32039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3204,32044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3204,32042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3205,32048,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3205,32046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3205,32051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3205,32050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3206,32055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3205,32054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3206,32059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3206,32057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3206,32063,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3206,32061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3207,32066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3206,32065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3207,32070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3207,32069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3207,32074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3207,32072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3208,32078,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3208,32076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3208,32081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3208,32080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3209,32085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3208,32084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3209,32089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3209,32087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3209,32093,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3209,32091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3210,32096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3209,32095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3210,32100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3210,32099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3210,32104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3210,32102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3211,32108,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3211,32106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3211,32111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3211,32110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3212,32115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3211,32114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3212,32119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3212,32117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3212,32123,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3212,32121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3213,32126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3212,32125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3213,32129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3213,32130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3213,32134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3213,32132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3214,32138,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3214,32136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3214,32141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3214,32140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3215,32145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3214,32144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3215,32149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3215,32147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3215,32153,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3215,32151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3216,32156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3215,32155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3216,32160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3216,32159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3216,32164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3216,32162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3217,32168,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3217,32166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3217,32171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3217,32170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3218,32175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3217,32174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3218,32179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3218,32177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3218,32183,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3218,32181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3219,32186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3218,32185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3219,32190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3219,32189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3219,32194,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3219,32192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3220,32198,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3220,32196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3220,32201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3220,32200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3221,32205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3220,32204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3221,32209,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3221,32207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3221,32213,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3221,32211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3222,32216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3221,32215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3222,32220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3222,32219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3222,32224,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3222,32222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3223,32228,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3223,32226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3223,32231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3223,32230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3224,32235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3223,32234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3224,32239,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3224,32237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3224,32243,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3224,32241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3225,32246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3224,32245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3225,32250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3225,32249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3225,32254,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3225,32252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3226,32258,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3226,32256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3226,32261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3226,32260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3227,32265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3226,32264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3227,32269,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3227,32267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3227,32273,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3227,32271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3228,32276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3227,32275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3228,32280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3228,32279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3228,32284,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3228,32282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3229,32288,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3229,32286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3229,32291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3229,32290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3230,32295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3229,32294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3230,32299,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3230,32297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3230,32303,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3230,32301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3231,32306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3230,32305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3231,32310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3231,32309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3231,32314,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3231,32312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3232,32318,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3232,32316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3232,32321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3232,32320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3233,32325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3232,32324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3233,32329,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3233,32327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3233,32333,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3233,32331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3234,32336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3233,32335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3234,32340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3234,32339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3234,32344,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3234,32342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3235,32348,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3235,32346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3235,32351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3235,32350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3236,32355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3235,32354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3236,32359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3236,32357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3236,32363,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3236,32361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3237,32366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3236,32365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3237,32370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3237,32369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3237,32374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3237,32372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3238,32378,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3238,32376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3238,32381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3238,32380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3239,32385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3238,32384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3239,32389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3239,32387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3239,32393,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3239,32391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3240,32396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3239,32395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3240,32400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3240,32399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3240,32404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3240,32402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3241,32408,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3241,32406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3241,32411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3241,32410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3242,32415,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3241,32414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3242,32419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3242,32417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3242,32423,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3242,32421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3243,32426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3242,32425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3243,32430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3243,32429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3243,32434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3243,32432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3244,32438,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3244,32436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3244,32441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3244,32440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3245,32445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3244,32444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3245,32449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3245,32447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3245,32453,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3245,32451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3246,32456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3245,32455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3246,32460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3246,32459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3246,32464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3246,32462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3247,32468,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3247,32466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3247,32471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3247,32470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3247,32474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3248,32475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3248,32479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3248,32477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3248,32483,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3248,32481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3249,32486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3248,32485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3249,32490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3249,32489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3249,32494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3249,32492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3250,32498,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3250,32496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3250,32501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3250,32500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3251,32505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3250,32504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3251,32509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3251,32507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3251,32513,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3251,32511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3252,32516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3251,32515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3252,32520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3252,32519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3252,32524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3252,32522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3253,32528,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3253,32526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3253,32531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3253,32530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3254,32535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3253,32534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3254,32539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3254,32537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3254,32543,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3254,32541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3255,32546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3254,32545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3255,32550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3255,32549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3255,32554,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3255,32552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3256,32558,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3256,32556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3256,32561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3256,32560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3257,32565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3256,32564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3257,32569,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3257,32567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3257,32573,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3257,32571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3258,32576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3257,32575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3258,32580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3258,32579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3258,32584,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3258,32582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3259,32588,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3259,32586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3259,32591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3259,32590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3260,32595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3259,32594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3260,32599,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3260,32597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3260,32603,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3260,32601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3261,32606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3260,32605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3261,32610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3261,32609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3261,32614,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3261,32612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3262,32618,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3262,32616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3262,32620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3262,32621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3263,32625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3262,32624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3263,32629,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3263,32627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3263,32633,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3263,32631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3264,32636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3263,32635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3264,32640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3264,32639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3264,32644,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3264,32642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3265,32648,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3265,32646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3265,32651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3265,32650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3266,32655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3265,32654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3266,32659,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3266,32657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3266,32663,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3266,32661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3267,32666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3266,32665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3267,32670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3267,32669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3267,32674,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3267,32672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3268,32678,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3268,32676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3268,32681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3268,32680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3269,32685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3268,32684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3269,32689,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3269,32687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3269,32693,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3269,32691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3270,32696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3269,32695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3270,32700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3270,32699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3270,32704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3270,32702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3271,32708,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3271,32706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3271,32711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3271,32710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3272,32715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3271,32714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3272,32719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3272,32717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3272,32723,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3272,32721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3273,32726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3272,32725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3273,32730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3273,32729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3273,32734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3273,32732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3274,32738,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3274,32736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3274,32741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3274,32740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3275,32745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3274,32744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3275,32749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3275,32747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3275,32753,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3275,32751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3276,32756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3275,32755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3276,32760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3276,32759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3276,32764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3276,32762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3277,32768,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3277,32766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3277,32771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3277,32770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3278,32775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3277,32774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3278,32779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3278,32777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3278,32783,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3278,32781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3279,32786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3278,32785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3279,32790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3279,32789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3279,32794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3279,32792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3280,32798,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3280,32796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3280,32801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3280,32800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3281,32805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3280,32804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3281,32809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3281,32807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3281,32813,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3281,32811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3282,32816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3281,32815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3282,32820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3282,32819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3282,32824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3282,32822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3283,32828,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3283,32826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3283,32831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3283,32830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3284,32835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3283,32834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3284,32839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3284,32837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3284,32843,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3284,32841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3285,32846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3284,32845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3285,32850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3285,32849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3285,32854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3285,32852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3286,32858,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3286,32856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3286,32861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3286,32860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3287,32865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3286,32864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3287,32869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3287,32867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3287,32873,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3287,32871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3288,32876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3287,32875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3288,32880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3288,32879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3288,32884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3288,32882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3289,32888,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3289,32886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3289,32891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3289,32890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3290,32895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3289,32894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3290,32899,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3290,32897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3290,32903,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3290,32901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3291,32906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3290,32905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3291,32910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3291,32909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3291,32914,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3291,32912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3292,32918,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3292,32916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3292,32921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3292,32920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3293,32925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3292,32924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3293,32929,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3293,32927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3293,32933,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3293,32931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3294,32936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3293,32935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3294,32940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3294,32939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3294,32944,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3294,32942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3295,32948,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3295,32946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3295,32951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3295,32950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3296,32955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3295,32954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3296,32959,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3296,32957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3296,32963,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3296,32961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3296,32965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3297,32966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3297,32970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3297,32969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3297,32974,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3297,32972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3298,32978,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3298,32976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3298,32981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3298,32980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3299,32985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3298,32984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3299,32989,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3299,32987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3299,32993,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3299,32991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3300,32996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3299,32995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3300,33000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3300,32999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3300,33004,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3300,33002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3301,33008,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3301,33006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3301,33011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3301,33010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3302,33015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3301,33014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3302,33019,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3302,33017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3302,33023,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3302,33021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3303,33026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3302,33025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3303,33030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3303,33029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3303,33034,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3303,33032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3304,33038,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3304,33036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3304,33041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3304,33040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3305,33045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3304,33044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3305,33049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3305,33047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3305,33053,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3305,33051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3306,33056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3305,33055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3306,33060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3306,33059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3306,33064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3306,33062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3307,33068,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3307,33066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3307,33071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3307,33070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3308,33075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3307,33074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3308,33079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3308,33077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3308,33083,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3308,33081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3309,33086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3308,33085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3309,33090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3309,33089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3309,33094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3309,33092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3310,33098,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3310,33096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3310,33101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3310,33100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3311,33105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3310,33104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3311,33109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3311,33107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3311,33113,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3311,33111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3312,33116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3311,33115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3312,33120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3312,33119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3312,33124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3312,33122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3313,33128,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3313,33126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3313,33131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3313,33130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3314,33135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3313,33134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3314,33139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3314,33137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3314,33143,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3314,33141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3315,33146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3314,33145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3315,33150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3315,33149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3315,33154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3315,33152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3316,33158,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3316,33156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3316,33161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3316,33160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3317,33165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3316,33164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3317,33169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3317,33167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3317,33173,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3317,33171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3318,33176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3317,33175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3318,33179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3318,33180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3318,33184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3318,33182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3319,33188,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3319,33186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3319,33191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3319,33190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3320,33195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3319,33194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3320,33199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3320,33197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3320,33203,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3320,33201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3321,33206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3320,33205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3321,33210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3321,33209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3321,33214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3321,33212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3322,33218,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3322,33216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3322,33221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3322,33220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3323,33225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3322,33224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3323,33229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3323,33227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3323,33233,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3323,33231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3324,33236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3323,33235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3324,33240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3324,33239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3324,33244,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3324,33242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3325,33248,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3325,33246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3325,33251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3325,33250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3326,33255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3325,33254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3326,33259,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3326,33257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3326,33263,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3326,33261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3327,33266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3326,33265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3327,33270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3327,33269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3327,33274,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3327,33272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3328,33278,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3328,33276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3328,33281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3328,33280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3329,33285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3328,33284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3329,33289,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3329,33287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3329,33293,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3329,33291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3330,33296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3329,33295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3330,33300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3330,33299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3330,33304,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3330,33302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3331,33308,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3331,33306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3331,33310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3331,33311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3332,33315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3331,33314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3332,33319,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3332,33317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3332,33323,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3332,33321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3333,33326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3332,33325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3333,33330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3333,33329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3333,33334,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3333,33332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3334,33338,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3334,33336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3334,33341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3334,33340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3335,33345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3334,33344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3335,33349,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3335,33347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3335,33353,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3335,33351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3336,33356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3335,33355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3336,33360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3336,33359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3336,33364,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3336,33362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3337,33368,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3337,33366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3337,33371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3337,33370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3338,33375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3337,33374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3338,33379,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3338,33377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3338,33383,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3338,33381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3339,33386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3338,33385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3339,33390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3339,33389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3339,33394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3339,33392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3340,33398,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3340,33396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3340,33401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3340,33400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3341,33405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3340,33404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3341,33409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3341,33407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3341,33413,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3341,33411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3342,33416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3341,33415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3342,33420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3342,33419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3342,33424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3342,33422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3343,33428,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3343,33426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3343,33431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3343,33430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3344,33435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3343,33434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3344,33439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3344,33437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3344,33443,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3344,33441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3345,33446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3344,33445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3345,33450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3345,33449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3345,33454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3345,33452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3346,33458,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3346,33456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3346,33461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3346,33460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3347,33465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3346,33464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3347,33469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3347,33467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3347,33473,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3347,33471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3348,33476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3347,33475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3348,33480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3348,33479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3348,33484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3348,33482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3349,33488,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3349,33486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3349,33491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3349,33490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3350,33495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3349,33494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3350,33499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3350,33497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3350,33503,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3350,33501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3351,33506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3350,33505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3351,33510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3351,33509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3351,33514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3351,33512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3352,33518,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3352,33516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3352,33521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3352,33520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3352,33524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3353,33525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3353,33529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3353,33527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3353,33533,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3353,33531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3354,33536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3353,33535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3354,33540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3354,33539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3354,33544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3354,33542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3355,33548,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3355,33546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3355,33551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3355,33550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3356,33555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3355,33554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3356,33559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3356,33557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3356,33563,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3356,33561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3357,33566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3356,33565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3357,33570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3357,33569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3357,33574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3357,33572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3358,33578,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3358,33576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3358,33581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3358,33580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3359,33585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3358,33584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3359,33589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3359,33587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3359,33593,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3359,33591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3360,33596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3359,33595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3360,33600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3360,33599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3360,33604,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3360,33602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3361,33608,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3361,33606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3361,33611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3361,33610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3362,33615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3361,33614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3362,33619,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3362,33617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3362,33623,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3362,33621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3363,33626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3362,33625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3363,33630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3363,33629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3363,33634,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3363,33632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3364,33638,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3364,33636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3364,33641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3364,33640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3365,33645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3364,33644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3365,33649,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3365,33647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3365,33653,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3365,33651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3366,33656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3365,33655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3366,33660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3366,33659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3366,33664,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3366,33662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3367,33668,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3367,33666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3367,33670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3367,33671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3368,33675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3367,33674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3368,33679,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3368,33677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3368,33683,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3368,33681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3369,33686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3368,33685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3369,33690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3369,33689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3369,33694,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3369,33692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3370,33698,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3370,33696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3370,33701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3370,33700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3371,33705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3370,33704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3371,33709,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3371,33707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3371,33713,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3371,33711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3372,33716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3371,33715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3372,33720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3372,33719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3372,33724,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3372,33722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3373,33728,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3373,33726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3373,33731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3373,33730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3374,33735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3373,33734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3374,33739,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3374,33737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3374,33743,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3374,33741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3375,33746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3374,33745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3375,33750,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3375,33749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3375,33754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3375,33752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3376,33758,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3376,33756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3376,33761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3376,33760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3377,33765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3376,33764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3377,33769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3377,33767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3377,33773,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3377,33771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3378,33776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3377,33775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3378,33780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3378,33779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3378,33784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3378,33782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3379,33788,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3379,33786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3379,33791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3379,33790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3380,33795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3379,33794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3380,33799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3380,33797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3380,33803,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3380,33801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3381,33806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3380,33805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3381,33810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3381,33809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3381,33814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3381,33812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3382,33818,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3382,33816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3382,33821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3382,33820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3383,33825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3382,33824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3383,33829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3383,33827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3383,33833,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3383,33831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3384,33836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3383,33835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3384,33840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3384,33839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3384,33844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3384,33842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3385,33848,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3385,33846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3385,33851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3385,33850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3386,33855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3385,33854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3386,33859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3386,33857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3386,33863,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3386,33861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3387,33866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3386,33865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3387,33869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3387,33870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3387,33874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3387,33872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3388,33878,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3388,33876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3388,33881,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3388,33880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3389,33885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3388,33884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3389,33889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3389,33887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3389,33893,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3389,33891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3390,33896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3389,33895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3390,33900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3390,33899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3390,33904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3390,33902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3391,33908,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3391,33906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3391,33911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3391,33910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3392,33915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3391,33914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3392,33919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3392,33917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3392,33923,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3392,33921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3393,33926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3392,33925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3393,33930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3393,33929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3393,33934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3393,33932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3394,33938,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3394,33936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3394,33941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3394,33940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3395,33945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3394,33944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3395,33949,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3395,33947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3395,33953,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3395,33951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3396,33956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3395,33955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3396,33960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3396,33959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3396,33964,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3396,33962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3397,33968,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3397,33966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3397,33971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3397,33970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3398,33975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3397,33974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3398,33979,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3398,33977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3398,33983,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3398,33981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3399,33986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3398,33985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3399,33990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3399,33989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3399,33994,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3399,33992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3400,33998,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3400,33996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3400,34001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3400,34000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3401,34005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3400,34004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3401,34009,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3401,34007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3401,34013,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3401,34011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3401,34015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3402,34016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3402,34020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3402,34019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3402,34024,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3402,34022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3403,34028,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3403,34026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3403,34031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3403,34030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3404,34035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3403,34034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3404,34039,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3404,34037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3404,34043,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3404,34041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3405,34046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3404,34045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3405,34050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3405,34049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3405,34054,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3405,34052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3406,34058,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3406,34056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3406,34061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3406,34060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3407,34065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3406,34064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3407,34069,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3407,34067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3407,34073,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3407,34071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3408,34076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3407,34075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3408,34080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3408,34079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3408,34084,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3408,34082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3409,34088,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3409,34086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3409,34091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3409,34090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3410,34095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3409,34094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3410,34099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3410,34097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3410,34103,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3410,34101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3411,34106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3410,34105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3411,34110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3411,34109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3411,34114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3411,34112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3412,34118,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3412,34116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3412,34121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3412,34120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3413,34125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3412,34124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3413,34129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3413,34127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3413,34133,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3413,34131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3414,34136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3413,34135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3414,34140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3414,34139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3414,34144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3414,34142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3415,34148,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3415,34146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3415,34151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3415,34150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3416,34155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3415,34154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3416,34159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3416,34157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3416,34163,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3416,34161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3417,34166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3416,34165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3417,34170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3417,34169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3417,34174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3417,34172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3418,34178,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3418,34176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3418,34181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3418,34180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3419,34185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3418,34184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3419,34189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3419,34187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3419,34193,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3419,34191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3420,34196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3419,34195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3420,34200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3420,34199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3420,34204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3420,34202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3421,34208,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3421,34206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3421,34211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3421,34210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3422,34215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3421,34214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3422,34219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3422,34217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3422,34223,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3422,34221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3423,34226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3422,34225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3423,34229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3423,34230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3423,34234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3423,34232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3424,34238,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3424,34236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3424,34241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3424,34240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3425,34245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3424,34244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3425,34249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3425,34247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3425,34253,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3425,34251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3426,34256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3425,34255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3426,34260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3426,34259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3426,34264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3426,34262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3427,34268,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3427,34266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3427,34271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3427,34270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3428,34275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3427,34274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3428,34279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3428,34277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3428,34283,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3428,34281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3429,34286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3428,34285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3429,34290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3429,34289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3429,34294,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3429,34292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3430,34298,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3430,34296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3430,34301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3430,34300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3431,34305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3430,34304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3431,34309,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3431,34307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3431,34313,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3431,34311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3432,34316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3431,34315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3432,34320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3432,34319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3432,34324,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3432,34322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3433,34328,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3433,34326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3433,34331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3433,34330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3434,34335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3433,34334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3434,34339,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3434,34337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3434,34343,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3434,34341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3435,34346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3434,34345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3435,34350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3435,34349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3435,34354,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3435,34352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3436,34358,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3436,34356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3436,34360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3436,34361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3437,34365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3436,34364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3437,34369,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3437,34367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3437,34373,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3437,34371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3438,34376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3437,34375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3438,34380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3438,34379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3438,34384,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3438,34382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3439,34388,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3439,34386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3439,34391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3439,34390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3440,34395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3439,34394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3440,34399,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3440,34397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3440,34403,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3440,34401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3441,34406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3440,34405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3441,34410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3441,34409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3441,34414,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3441,34412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3442,34418,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3442,34416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3442,34421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3442,34420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3443,34425,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3442,34424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3443,34429,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3443,34427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3443,34433,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3443,34431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3444,34436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3443,34435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3444,34440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3444,34439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3444,34444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3444,34442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3445,34448,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3445,34446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3445,34451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3445,34450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3446,34455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3445,34454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3446,34459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3446,34457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3446,34463,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3446,34461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3447,34466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3446,34465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3447,34470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3447,34469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3447,34474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3447,34472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3448,34478,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3448,34476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3448,34481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3448,34480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3449,34485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3448,34484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3449,34489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3449,34487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3449,34493,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3449,34491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3450,34496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3449,34495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3450,34500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3450,34499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3450,34504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3450,34502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3451,34508,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3451,34506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3451,34511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3451,34510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3452,34515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3451,34514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3452,34519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3452,34517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3452,34523,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3452,34521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3453,34526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3452,34525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3453,34530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3453,34529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3453,34534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3453,34532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3454,34538,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3454,34536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3454,34541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3454,34540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3455,34545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3454,34544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3455,34549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3455,34547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3455,34553,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3455,34551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3456,34556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3455,34555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3456,34560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3456,34559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3456,34564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3456,34562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3457,34568,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3457,34566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3457,34571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3457,34570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3457,34574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3458,34575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3458,34579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3458,34577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3458,34583,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3458,34581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3459,34586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3458,34585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3459,34590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3459,34589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3459,34594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3459,34592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3460,34598,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3460,34596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3460,34601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3460,34600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3461,34605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3460,34604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3461,34609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3461,34607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3461,34613,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3461,34611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3462,34616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3461,34615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3462,34620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3462,34619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3462,34624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3462,34622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3463,34628,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3463,34626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3463,34631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3463,34630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3464,34635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3463,34634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3464,34639,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3464,34637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3464,34643,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3464,34641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3465,34646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3464,34645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3465,34650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3465,34649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3465,34654,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3465,34652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3466,34658,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3466,34656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3466,34661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3466,34660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3467,34665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3466,34664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3467,34669,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3467,34667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3467,34673,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3467,34671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3468,34676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3467,34675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3468,34680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3468,34679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3468,34684,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3468,34682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3469,34688,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3469,34686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3469,34691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3469,34690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3470,34695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3469,34694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3470,34699,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3470,34697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3470,34703,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3470,34701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3471,34706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3470,34705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3471,34710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3471,34709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3471,34714,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3471,34712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3472,34718,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3472,34716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3472,34721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3472,34720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3473,34725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3472,34724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3473,34729,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3473,34727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3473,34733,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3473,34731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3474,34736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3473,34735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3474,34740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3474,34739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3474,34744,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3474,34742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3475,34748,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3475,34746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3475,34751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3475,34750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3476,34755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3475,34754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3476,34759,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3476,34757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3476,34763,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3476,34761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3477,34766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3476,34765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3477,34770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3477,34769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3477,34774,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3477,34772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3478,34778,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3478,34776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3478,34781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3478,34780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3479,34785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3478,34784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3479,34789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3479,34787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3479,34793,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3479,34791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3480,34796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3479,34795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3480,34800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3480,34799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3480,34804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3480,34802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3481,34808,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3481,34806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3481,34811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3481,34810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3482,34815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3481,34814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3482,34819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3482,34817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3482,34823,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3482,34821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3483,34826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3482,34825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3483,34830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3483,34829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3483,34834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3483,34832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3484,34838,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3484,34836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3484,34841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3484,34840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3485,34845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3484,34844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3485,34849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3485,34847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3485,34853,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3485,34851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3486,34856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3485,34855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3486,34860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3486,34859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3486,34864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3486,34862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3487,34868,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3487,34866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3487,34871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3487,34870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3488,34875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3487,34874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3488,34879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3488,34877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3488,34883,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3488,34881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3489,34886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3488,34885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3489,34890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3489,34889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3489,34894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3489,34892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3490,34898,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3490,34896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3490,34901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3490,34900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3491,34905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3490,34904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3491,34909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3491,34907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3491,34913,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3491,34911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3492,34916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3491,34915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3492,34919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3492,34920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3492,34924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3492,34922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3493,34928,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3493,34926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3493,34931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3493,34930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3494,34935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3493,34934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3494,34939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3494,34937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3494,34943,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3494,34941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3495,34946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3494,34945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3495,34950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3495,34949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3495,34954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3495,34952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3496,34958,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3496,34956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3496,34961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3496,34960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3497,34965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3496,34964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3497,34969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3497,34967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3497,34973,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3497,34971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3498,34976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3497,34975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3498,34980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3498,34979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3498,34984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3498,34982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3499,34988,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3499,34986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3499,34991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3499,34990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3500,34995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3499,34994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3500,34999,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3500,34997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3500,35003,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3500,35001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3501,35006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3500,35005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3501,35010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3501,35009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3501,35014,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3501,35012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3502,35018,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3502,35016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3502,35021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3502,35020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3503,35025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3502,35024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3503,35029,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3503,35027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3503,35033,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3503,35031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3504,35036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3503,35035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3504,35040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3504,35039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3504,35044,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3504,35042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3505,35048,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3505,35046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3505,35051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3505,35050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3506,35055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3505,35054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3506,35059,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3506,35057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3506,35063,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3506,35061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3506,35065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3507,35066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3507,35070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3507,35069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3507,35074,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3507,35072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3508,35078,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3508,35076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3508,35081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3508,35080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3509,35085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3508,35084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3509,35089,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3509,35087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3509,35093,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3509,35091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3510,35096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3509,35095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3510,35100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3510,35099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3510,35104,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3510,35102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3511,35108,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3511,35106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3511,35111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3511,35110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3512,35115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3511,35114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3512,35119,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3512,35117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3512,35123,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3512,35121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3513,35126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3512,35125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3513,35130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3513,35129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3513,35134,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3513,35132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3514,35138,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3514,35136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3514,35141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3514,35140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3515,35145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3514,35144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3515,35149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3515,35147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3515,35153,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3515,35151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3516,35156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3515,35155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3516,35160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3516,35159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3516,35164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3516,35162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3517,35168,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3517,35166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3517,35171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3517,35170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3518,35175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3517,35174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3518,35179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3518,35177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3518,35183,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3518,35181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3519,35186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3518,35185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3519,35190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3519,35189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3519,35194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3519,35192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3520,35198,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3520,35196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3520,35201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3520,35200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3521,35205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3520,35204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3521,35209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3521,35207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3521,35213,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3521,35211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3522,35216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3521,35215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3522,35220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3522,35219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3522,35224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3522,35222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3523,35228,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3523,35226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3523,35231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3523,35230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3524,35235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3523,35234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3524,35239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3524,35237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3524,35243,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3524,35241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3525,35246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3524,35245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3525,35250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3525,35249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3525,35254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3525,35252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3526,35258,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3526,35256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3526,35261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3526,35260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3527,35265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3526,35264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3527,35269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3527,35267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3527,35273,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3527,35271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3528,35276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3527,35275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3528,35280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3528,35279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3528,35284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3528,35282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3529,35288,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3529,35286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3529,35291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3529,35290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3530,35295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3529,35294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3530,35299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3530,35297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3530,35303,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3530,35301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3531,35306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3530,35305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3531,35310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3531,35309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3531,35314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3531,35312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3532,35318,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3532,35316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3532,35321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3532,35320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3533,35325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3532,35324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3533,35329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3533,35327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3533,35333,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3533,35331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3534,35336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3533,35335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3534,35340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3534,35339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3534,35344,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3534,35342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3535,35348,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3535,35346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3535,35351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3535,35350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3536,35355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3535,35354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3536,35359,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3536,35357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3536,35363,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3536,35361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3537,35366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3536,35365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3537,35370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3537,35369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3537,35374,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3537,35372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3538,35378,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3538,35376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3538,35381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3538,35380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3539,35385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3538,35384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3539,35389,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3539,35387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3539,35393,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3539,35391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3540,35396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3539,35395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3540,35400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3540,35399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3540,35404,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3540,35402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3541,35408,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3541,35406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3541,35410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3541,35411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3542,35415,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3541,35414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3542,35419,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3542,35417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3542,35423,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3542,35421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3543,35426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3542,35425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3543,35430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3543,35429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3543,35434,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3543,35432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3544,35438,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3544,35436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3544,35441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3544,35440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3545,35445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3544,35444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3545,35449,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3545,35447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3545,35453,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3545,35451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3546,35456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3545,35455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3546,35460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3546,35459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3546,35464,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3546,35462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3547,35468,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3547,35466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3547,35471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3547,35470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3548,35475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3547,35474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3548,35479,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3548,35477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3548,35483,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3548,35481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3549,35486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3548,35485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3549,35490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3549,35489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3549,35494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3549,35492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3550,35498,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3550,35496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3550,35501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3550,35500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3551,35505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3550,35504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3551,35509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3551,35507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3551,35513,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3551,35511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3552,35516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3551,35515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3552,35520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3552,35519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3552,35524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3552,35522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3553,35528,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3553,35526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3553,35531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3553,35530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3554,35535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3553,35534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3554,35539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3554,35537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3554,35543,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3554,35541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3555,35546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3554,35545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3555,35550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3555,35549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3555,35554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3555,35552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3556,35558,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3556,35556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3556,35561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3556,35560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3557,35565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3556,35564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3557,35569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3557,35567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3557,35573,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3557,35571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3558,35576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3557,35575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3558,35580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3558,35579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3558,35584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3558,35582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3559,35588,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3559,35586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3559,35591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3559,35590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3560,35595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3559,35594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3560,35599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3560,35597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3560,35603,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3560,35601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3561,35606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3560,35605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3561,35610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3561,35609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3561,35614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3561,35612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3562,35618,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3562,35616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3562,35621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3562,35620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3562,35624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3563,35625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3563,35629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3563,35627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3563,35633,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3563,35631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3564,35636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3563,35635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3564,35640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3564,35639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3564,35644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3564,35642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3565,35648,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3565,35646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3565,35651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3565,35650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3566,35655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3565,35654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3566,35659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3566,35657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3566,35663,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3566,35661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3567,35666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3566,35665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3567,35670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3567,35669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3567,35674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3567,35672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3568,35678,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3568,35676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3568,35681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3568,35680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3569,35685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3568,35684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3569,35689,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3569,35687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3569,35693,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3569,35691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3570,35696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3569,35695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3570,35700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3570,35699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3570,35704,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3570,35702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3571,35708,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3571,35706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3571,35711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3571,35710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3572,35715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3571,35714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3572,35719,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3572,35717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3572,35723,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3572,35721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3573,35726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3572,35725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3573,35730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3573,35729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3573,35734,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3573,35732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3574,35738,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3574,35736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3574,35741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3574,35740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3575,35745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3574,35744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3575,35749,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3575,35747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3575,35753,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3575,35751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3575,35755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3576,35756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3576,35760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3576,35759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3576,35764,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3576,35762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3577,35768,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3577,35766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3577,35771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3577,35770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3578,35775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3577,35774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3578,35779,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3578,35777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3578,35783,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3578,35781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3579,35786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3578,35785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3579,35790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3579,35789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3579,35794,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3579,35792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3580,35798,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3580,35796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3580,35801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3580,35800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3581,35805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3580,35804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3581,35809,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3581,35807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3581,35813,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3581,35811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3582,35816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3581,35815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3582,35820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3582,35819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3582,35824,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3582,35822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3583,35828,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3583,35826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3583,35831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3583,35830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3584,35835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3583,35834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3584,35839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3584,35837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3584,35843,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3584,35841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3585,35846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3584,35845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3585,35850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3585,35849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3585,35854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3585,35852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3586,35858,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3586,35856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3586,35861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3586,35860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3587,35865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3586,35864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3587,35869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3587,35867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3587,35873,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3587,35871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3588,35876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3587,35875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3588,35880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3588,35879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3588,35884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3588,35882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3589,35888,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3589,35886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3589,35891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3589,35890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3590,35895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3589,35894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3590,35899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3590,35897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3590,35903,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3590,35901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3591,35906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3590,35905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3591,35910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3591,35909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3591,35914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3591,35912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3592,35918,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3592,35916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3592,35921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3592,35920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3593,35925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3592,35924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3593,35929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3593,35927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3593,35933,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3593,35931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3594,35936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3593,35935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3594,35940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3594,35939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3594,35944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3594,35942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3595,35948,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3595,35946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3595,35951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3595,35950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3596,35955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3595,35954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3596,35959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3596,35957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3596,35963,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3596,35961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3597,35966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3596,35965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3597,35969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3597,35970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3597,35974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3597,35972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3598,35978,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3598,35976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3598,35981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3598,35980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3599,35985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3598,35984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3599,35989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3599,35987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3599,35993,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3599,35991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3600,35996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3599,35995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3600,36000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3600,35999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3600,36004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3600,36002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3601,36008,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3601,36006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3601,36011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3601,36010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3602,36015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3601,36014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3602,36019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3602,36017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3602,36023,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3602,36021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3603,36026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3602,36025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3603,36030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3603,36029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3603,36034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3603,36032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3604,36038,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3604,36036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3604,36041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3604,36040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3605,36045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3604,36044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3605,36049,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3605,36047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3605,36053,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3605,36051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3606,36056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3605,36055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3606,36060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3606,36059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3606,36064,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3606,36062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3607,36068,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3607,36066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3607,36071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3607,36070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3608,36075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3607,36074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3608,36079,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3608,36077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3608,36083,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3608,36081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3609,36086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3608,36085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3609,36090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3609,36089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3609,36094,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3609,36092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3610,36098,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3610,36096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3610,36101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3610,36100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3611,36105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3610,36104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3611,36109,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3611,36107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3611,36113,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3611,36111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3612,36116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3611,36115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3612,36120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3612,36119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3612,36124,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3612,36122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3613,36128,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3613,36126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3613,36131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3613,36130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3614,36135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3613,36134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3614,36139,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3614,36137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3614,36143,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3614,36141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3615,36146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3614,36145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3615,36150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3615,36149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3615,36154,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3615,36152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3616,36158,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3616,36156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3616,36161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3616,36160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3617,36165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3616,36164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3617,36169,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3617,36167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3617,36173,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3617,36171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3618,36176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3617,36175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3618,36180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3618,36179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3618,36184,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3618,36182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3619,36188,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3619,36186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3619,36191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3619,36190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3620,36195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3619,36194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3620,36199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3620,36197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3620,36203,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3620,36201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3621,36206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3620,36205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3621,36210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3621,36209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3621,36214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3621,36212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3622,36218,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3622,36216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3622,36221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3622,36220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3623,36225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3622,36224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3623,36229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3623,36227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3623,36233,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3623,36231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3624,36236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3623,36235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3624,36240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3624,36239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3624,36244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3624,36242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3625,36248,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3625,36246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3625,36251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3625,36250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3626,36255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3625,36254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3626,36259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3626,36257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3626,36263,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3626,36261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3627,36266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3626,36265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3627,36270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3627,36269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3627,36274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3627,36272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3628,36278,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3628,36276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3628,36281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3628,36280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3629,36285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3628,36284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3629,36289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3629,36287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3629,36293,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3629,36291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3630,36296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3629,36295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3630,36300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3630,36299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3630,36304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3630,36302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3631,36308,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3631,36306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3631,36311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3631,36310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3631,36314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3632,36315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3632,36319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3632,36317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3632,36323,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3632,36321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3633,36326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3632,36325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3633,36330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3633,36329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3633,36334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3633,36332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3634,36338,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3634,36336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3634,36341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3634,36340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3635,36345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3634,36344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3635,36349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3635,36347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3635,36353,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3635,36351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3636,36356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3635,36355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3636,36360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3636,36359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3636,36364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3636,36362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3637,36368,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3637,36366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3637,36371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3637,36370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3638,36375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3637,36374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3638,36379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3638,36377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3638,36383,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3638,36381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3639,36386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3638,36385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3639,36390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3639,36389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3639,36394,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3639,36392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3640,36398,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3640,36396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3640,36401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3640,36400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3641,36405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3640,36404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3641,36409,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3641,36407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3641,36413,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3641,36411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3642,36416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3641,36415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3642,36420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3642,36419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3642,36424,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3642,36422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3643,36428,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3643,36426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3643,36431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3643,36430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3644,36435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3643,36434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3644,36439,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3644,36437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3644,36443,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3644,36441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3645,36446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3644,36445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3645,36450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3645,36449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3645,36454,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3645,36452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3646,36458,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3646,36456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3646,36460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3646,36461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3647,36465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3646,36464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3647,36469,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3647,36467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3647,36473,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3647,36471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3648,36476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3647,36475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3648,36480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3648,36479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3648,36484,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3648,36482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3649,36488,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3649,36486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3649,36491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3649,36490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3650,36495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3649,36494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3650,36499,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3650,36497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3650,36503,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3650,36501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3651,36506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3650,36505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3651,36510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3651,36509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3651,36514,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3651,36512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3652,36518,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3652,36516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3652,36521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3652,36520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3653,36525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3652,36524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3653,36529,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3653,36527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3653,36533,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3653,36531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3654,36536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3653,36535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3654,36540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3654,36539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3654,36544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3654,36542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3655,36548,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3655,36546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3655,36551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3655,36550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3656,36555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3655,36554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3656,36559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3656,36557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3656,36563,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3656,36561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3657,36566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3656,36565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3657,36570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3657,36569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3657,36574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3657,36572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3658,36578,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3658,36576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3658,36581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3658,36580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3659,36585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3658,36584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3659,36589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3659,36587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3659,36593,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3659,36591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3660,36596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3659,36595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3660,36600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3660,36599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3660,36604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3660,36602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3661,36608,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3661,36606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3661,36611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3661,36610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3662,36615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3661,36614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3662,36619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3662,36617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3662,36623,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3662,36621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3663,36626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3662,36625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3663,36630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3663,36629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3663,36634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3663,36632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3664,36638,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3664,36636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3664,36641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3664,36640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3665,36645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3664,36644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3665,36649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3665,36647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3665,36653,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3665,36651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3666,36656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3665,36655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3666,36660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3666,36659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3666,36664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3666,36662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3667,36668,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3667,36666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3667,36671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3667,36670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3668,36675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3667,36674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3668,36679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3668,36677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3668,36683,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3668,36681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3669,36686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3668,36685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3669,36690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3669,36689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3669,36694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3669,36692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3670,36698,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3670,36696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3670,36701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3670,36700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3671,36705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3670,36704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3671,36709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3671,36707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3671,36713,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3671,36711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3672,36716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3671,36715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3672,36720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3672,36719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3672,36724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3672,36722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3673,36728,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3673,36726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3673,36731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3673,36730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3674,36735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3673,36734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3674,36739,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3674,36737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3674,36743,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3674,36741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3675,36746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3674,36745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3675,36750,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3675,36749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3675,36754,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3675,36752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3676,36758,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3676,36756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3676,36761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3676,36760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3677,36765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3676,36764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3677,36769,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3677,36767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3677,36773,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3677,36771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3678,36776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3677,36775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3678,36780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3678,36779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3678,36784,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3678,36782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3679,36788,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3679,36786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3679,36791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3679,36790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3680,36795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3679,36794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3680,36799,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3680,36797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3680,36803,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3680,36801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3680,36805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3681,36806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3681,36810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3681,36809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3681,36814,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3681,36812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3682,36818,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3682,36816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3682,36821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3682,36820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3683,36825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3682,36824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3683,36829,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3683,36827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3683,36833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3683,36831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3684,36836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3683,36835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3684,36840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3684,36839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3684,36844,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3684,36842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3685,36848,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3685,36846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3685,36851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3685,36850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3686,36855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3685,36854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3686,36859,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3686,36857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3686,36863,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3686,36861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3687,36866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3686,36865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3687,36870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3687,36869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3687,36874,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3687,36872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3688,36878,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3688,36876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3688,36881,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3688,36880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3689,36885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3688,36884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3689,36889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3689,36887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3689,36893,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3689,36891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3690,36896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3689,36895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3690,36900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3690,36899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3690,36904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3690,36902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3691,36908,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3691,36906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3691,36911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3691,36910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3692,36915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3691,36914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3692,36919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3692,36917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3692,36923,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3692,36921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3693,36926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3692,36925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3693,36930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3693,36929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3693,36934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3693,36932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3694,36938,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3694,36936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3694,36941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3694,36940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3695,36945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3694,36944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3695,36949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3695,36947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3695,36953,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3695,36951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3696,36956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3695,36955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3696,36960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3696,36959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3696,36964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3696,36962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3697,36968,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3697,36966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3697,36971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3697,36970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3698,36975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3697,36974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3698,36979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3698,36977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3698,36983,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3698,36981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3699,36986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3698,36985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3699,36990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3699,36989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3699,36994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3699,36992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3700,36998,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3700,36996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3700,37001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3700,37000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3701,37005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3700,37004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3701,37009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3701,37007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3701,37013,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3701,37011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3702,37016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3701,37015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3702,37019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3702,37020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3702,37024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3702,37022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3703,37028,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3703,37026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3703,37031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3703,37030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3704,37035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3703,37034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3704,37039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3704,37037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3704,37043,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3704,37041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3705,37046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3704,37045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3705,37050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3705,37049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3705,37054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3705,37052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3706,37058,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3706,37056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3706,37061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3706,37060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3707,37065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3706,37064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3707,37069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3707,37067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3707,37073,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3707,37071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3708,37076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3707,37075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3708,37080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3708,37079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3708,37084,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3708,37082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3709,37088,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3709,37086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3709,37091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3709,37090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3710,37095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3709,37094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3710,37099,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3710,37097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3710,37103,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3710,37101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3711,37106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3710,37105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3711,37110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3711,37109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3711,37114,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3711,37112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3712,37118,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3712,37116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3712,37121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3712,37120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3713,37125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3712,37124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3713,37129,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3713,37127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3713,37133,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3713,37131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3714,37136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3713,37135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3714,37140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3714,37139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3714,37144,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3714,37142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3715,37148,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3715,37146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3715,37151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3715,37150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3716,37155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3715,37154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3716,37159,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3716,37157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3716,37163,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3716,37161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3717,37166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3716,37165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3717,37170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3717,37169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3717,37174,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3717,37172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3718,37178,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3718,37176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3718,37181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3718,37180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3719,37185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3718,37184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3719,37189,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3719,37187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3719,37193,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3719,37191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3720,37196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3719,37195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3720,37200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3720,37199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3720,37204,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3720,37202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3721,37208,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3721,37206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3721,37211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3721,37210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3722,37215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3721,37214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3722,37219,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3722,37217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3722,37223,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3722,37221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3723,37226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3722,37225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3723,37230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3723,37229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3723,37234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3723,37232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3724,37238,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3724,37236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3724,37241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3724,37240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3725,37245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3724,37244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3725,37249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3725,37247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3725,37253,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3725,37251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3726,37256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3725,37255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3726,37260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3726,37259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3726,37264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3726,37262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3727,37268,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3727,37266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3727,37271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3727,37270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3728,37275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3727,37274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3728,37279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3728,37277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3728,37283,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3728,37281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3729,37286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3728,37285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3729,37290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3729,37289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3729,37294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3729,37292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3730,37298,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3730,37296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3730,37301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3730,37300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3731,37305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3730,37304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3731,37309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3731,37307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3731,37313,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3731,37311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3732,37316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3731,37315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3732,37320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3732,37319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3732,37324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3732,37322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3733,37328,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3733,37326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3733,37331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3733,37330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3734,37335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3733,37334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3734,37339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3734,37337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3734,37343,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3734,37341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3735,37346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3734,37345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3735,37350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3735,37349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3735,37354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3735,37352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3736,37358,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3736,37356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3736,37361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3736,37360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3736,37364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3737,37365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3737,37369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3737,37367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3737,37373,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3737,37371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3738,37376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3737,37375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3738,37380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3738,37379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3738,37384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3738,37382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3739,37388,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3739,37386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3739,37391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3739,37390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3740,37395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3739,37394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3740,37399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3740,37397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3740,37403,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3740,37401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3741,37406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3740,37405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3741,37410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3741,37409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3741,37414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3741,37412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3742,37418,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3742,37416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3742,37421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3742,37420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3743,37425,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3742,37424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3743,37429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3743,37427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3743,37433,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3743,37431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3744,37436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3743,37435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3744,37440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3744,37439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3744,37444,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3744,37442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3745,37448,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3745,37446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3745,37451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3745,37450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3746,37455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3745,37454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3746,37459,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3746,37457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3746,37463,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3746,37461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3747,37466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3746,37465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3747,37470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3747,37469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3747,37474,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3747,37472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3748,37478,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3748,37476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3748,37481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3748,37480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3749,37485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3748,37484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3749,37489,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3749,37487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3749,37493,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3749,37491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3750,37496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3749,37495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3750,37500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3750,37499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3750,37504,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3750,37502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3751,37508,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3751,37506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3751,37510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3751,37511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3752,37515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3751,37514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3752,37519,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3752,37517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3752,37523,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3752,37521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3753,37526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3752,37525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3753,37530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3753,37529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3753,37534,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3753,37532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3754,37538,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3754,37536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3754,37541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3754,37540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3755,37545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3754,37544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3755,37549,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3755,37547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3755,37553,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3755,37551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3756,37556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3755,37555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3756,37560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3756,37559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3756,37564,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3756,37562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3757,37568,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3757,37566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3757,37571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3757,37570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3758,37575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3757,37574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3758,37579,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3758,37577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3758,37583,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3758,37581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3759,37586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3758,37585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3759,37590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3759,37589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3759,37594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3759,37592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3760,37598,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3760,37596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3760,37601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3760,37600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3761,37605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3760,37604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3761,37609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3761,37607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3761,37613,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3761,37611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3762,37616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3761,37615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3762,37620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3762,37619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3762,37624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3762,37622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3763,37628,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3763,37626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3763,37631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3763,37630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3764,37635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3763,37634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3764,37639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3764,37637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3764,37643,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3764,37641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3765,37646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3764,37645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3765,37650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3765,37649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3765,37654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3765,37652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3766,37658,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3766,37656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3766,37661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3766,37660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3767,37665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3766,37664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3767,37669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3767,37667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3767,37673,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3767,37671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3768,37676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3767,37675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3768,37680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3768,37679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3768,37684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3768,37682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3769,37688,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3769,37686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3769,37691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3769,37690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3770,37695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3769,37694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3770,37699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3770,37697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3770,37703,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3770,37701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3771,37706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3770,37705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3771,37709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3771,37710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3771,37714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3771,37712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3772,37718,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3772,37716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3772,37721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3772,37720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3773,37725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3772,37724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3773,37729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3773,37727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3773,37733,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3773,37731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3774,37736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3773,37735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3774,37740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3774,37739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3774,37744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3774,37742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3775,37748,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3775,37746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3775,37751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3775,37750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3776,37755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3775,37754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3776,37759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3776,37757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3776,37763,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3776,37761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3777,37766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3776,37765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3777,37770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3777,37769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3777,37774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3777,37772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3778,37778,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3778,37776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3778,37781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3778,37780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3779,37785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3778,37784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3779,37789,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3779,37787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3779,37793,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3779,37791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3780,37796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3779,37795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3780,37800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3780,37799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3780,37804,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3780,37802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3781,37808,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3781,37806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3781,37811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3781,37810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3782,37815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3781,37814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3782,37819,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3782,37817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3782,37823,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3782,37821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3783,37826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3782,37825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3783,37830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3783,37829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3783,37834,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3783,37832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3784,37838,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3784,37836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3784,37841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3784,37840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3785,37845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3784,37844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3785,37849,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3785,37847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3785,37853,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3785,37851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3785,37855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3786,37856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3786,37860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3786,37859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3786,37864,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3786,37862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3787,37868,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3787,37866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3787,37871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3787,37870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3788,37875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3787,37874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3788,37879,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3788,37877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3788,37883,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3788,37881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3789,37886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3788,37885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3789,37890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3789,37889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3789,37894,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3789,37892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3790,37898,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3790,37896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3790,37901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3790,37900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3791,37905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3790,37904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3791,37909,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3791,37907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3791,37913,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3791,37911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3792,37916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3791,37915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3792,37920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3792,37919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3792,37924,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3792,37922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3793,37928,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3793,37926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3793,37931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3793,37930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3794,37935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3793,37934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3794,37939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3794,37937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3794,37943,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3794,37941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3795,37946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3794,37945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3795,37950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3795,37949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3795,37954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3795,37952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3796,37958,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3796,37956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3796,37961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3796,37960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3797,37965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3796,37964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3797,37969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3797,37967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3797,37973,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3797,37971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3798,37976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3797,37975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3798,37980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3798,37979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3798,37984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3798,37982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3799,37988,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3799,37986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3799,37991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3799,37990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3800,37995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3799,37994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3800,37999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3800,37997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3800,38003,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3800,38001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3801,38006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3800,38005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3801,38010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3801,38009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3801,38014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3801,38012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3802,38018,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3802,38016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3802,38021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3802,38020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3803,38025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3802,38024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3803,38029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3803,38027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3803,38033,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3803,38031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3804,38036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3803,38035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3804,38040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3804,38039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3804,38044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3804,38042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3805,38048,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3805,38046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3805,38051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3805,38050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3806,38055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3805,38054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3806,38059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3806,38057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3806,38063,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3806,38061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3807,38066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3806,38065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3807,38069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3807,38070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3807,38074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3807,38072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3808,38078,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3808,38076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3808,38081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3808,38080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3809,38085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3808,38084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3809,38089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3809,38087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3809,38093,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3809,38091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3810,38096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3809,38095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3810,38100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3810,38099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3810,38104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3810,38102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3811,38108,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3811,38106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3811,38111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3811,38110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3812,38115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3811,38114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3812,38119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3812,38117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3812,38123,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3812,38121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3813,38126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3812,38125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3813,38130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3813,38129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3813,38134,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3813,38132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3814,38138,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3814,38136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3814,38141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3814,38140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3815,38145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3814,38144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3815,38149,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3815,38147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3815,38153,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3815,38151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3816,38156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3815,38155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3816,38160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3816,38159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3816,38164,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3816,38162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3817,38168,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3817,38166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3817,38171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3817,38170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3818,38175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3817,38174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3818,38179,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3818,38177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3818,38183,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3818,38181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3819,38186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3818,38185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3819,38190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3819,38189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3819,38194,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3819,38192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3820,38198,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3820,38196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3820,38200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3820,38201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3821,38205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3820,38204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3821,38209,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3821,38207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3821,38213,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3821,38211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3822,38216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3821,38215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3822,38220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3822,38219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3822,38224,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3822,38222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3823,38228,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3823,38226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3823,38231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3823,38230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3824,38235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3823,38234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3824,38239,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3824,38237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3824,38243,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3824,38241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3825,38246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3824,38245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3825,38250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3825,38249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3825,38254,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3825,38252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3826,38258,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3826,38256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3826,38261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3826,38260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3827,38265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3826,38264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3827,38269,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3827,38267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3827,38273,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3827,38271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3828,38276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3827,38275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3828,38280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3828,38279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3828,38284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3828,38282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3829,38288,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3829,38286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3829,38291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3829,38290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3830,38295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3829,38294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3830,38299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3830,38297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3830,38303,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3830,38301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3831,38306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3830,38305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3831,38310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3831,38309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3831,38314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3831,38312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3832,38318,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3832,38316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3832,38321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3832,38320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3833,38325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3832,38324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3833,38329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3833,38327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3833,38333,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3833,38331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3834,38336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3833,38335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3834,38340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3834,38339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3834,38344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3834,38342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3835,38348,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3835,38346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3835,38351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3835,38350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3836,38355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3835,38354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3836,38359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3836,38357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3836,38363,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3836,38361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3837,38366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3836,38365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3837,38370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3837,38369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3837,38374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3837,38372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3838,38378,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3838,38376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3838,38381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3838,38380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3839,38385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3838,38384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3839,38389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3839,38387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3839,38393,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3839,38391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3840,38396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3839,38395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3840,38400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3840,38399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3840,38404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3840,38402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3841,38408,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3841,38406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3841,38411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3841,38410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3841,38414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3842,38415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3842,38419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3842,38417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3842,38423,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3842,38421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3843,38426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3842,38425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3843,38430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3843,38429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3843,38434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3843,38432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3844,38438,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3844,38436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3844,38441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3844,38440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3845,38445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3844,38444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3845,38449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3845,38447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3845,38453,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3845,38451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3846,38456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3845,38455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3846,38460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3846,38459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3846,38464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3846,38462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3847,38468,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3847,38466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3847,38471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3847,38470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3848,38475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3847,38474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3848,38479,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3848,38477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3848,38483,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3848,38481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3849,38486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3848,38485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3849,38490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3849,38489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3849,38494,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3849,38492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3850,38498,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3850,38496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3850,38501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3850,38500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3851,38505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3850,38504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3851,38509,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3851,38507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3851,38513,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3851,38511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3852,38516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3851,38515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3852,38520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3852,38519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3852,38524,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3852,38522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3853,38528,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3853,38526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3853,38531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3853,38530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3854,38535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3853,38534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3854,38539,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3854,38537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3854,38543,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3854,38541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3855,38546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3854,38545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3855,38550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3855,38549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3855,38554,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3855,38552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3856,38558,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3856,38556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3856,38561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3856,38560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3857,38565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3856,38564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3857,38569,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3857,38567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3857,38573,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3857,38571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3858,38576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3857,38575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3858,38580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3858,38579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3858,38584,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3858,38582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3859,38588,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3859,38586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3859,38591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3859,38590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3860,38595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3859,38594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3860,38599,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3860,38597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3860,38603,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3860,38601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3861,38606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3860,38605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3861,38610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3861,38609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3861,38614,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3861,38612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3862,38618,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3862,38616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3862,38621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3862,38620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3863,38625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3862,38624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3863,38629,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3863,38627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3863,38633,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3863,38631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3864,38636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3863,38635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3864,38640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3864,38639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3864,38644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3864,38642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3865,38648,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3865,38646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3865,38651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3865,38650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3866,38655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3865,38654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3866,38659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3866,38657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3866,38663,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3866,38661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3867,38666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3866,38665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3867,38670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3867,38669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3867,38674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3867,38672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3868,38678,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3868,38676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3868,38681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3868,38680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3869,38685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3868,38684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3869,38689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3869,38687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3869,38693,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3869,38691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3870,38696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3869,38695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3870,38700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3870,38699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3870,38704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3870,38702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3871,38708,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3871,38706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3871,38711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3871,38710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3872,38715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3871,38714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3872,38719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3872,38717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3872,38723,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3872,38721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3873,38726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3872,38725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3873,38730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3873,38729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3873,38734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3873,38732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3874,38738,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3874,38736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3874,38741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3874,38740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3875,38745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3874,38744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3875,38749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3875,38747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3875,38753,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3875,38751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3876,38756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3875,38755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3876,38759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3876,38760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3876,38764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3876,38762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3877,38768,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3877,38766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3877,38771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3877,38770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3878,38775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3877,38774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3878,38779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3878,38777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3878,38783,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3878,38781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3879,38786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3878,38785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3879,38790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3879,38789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3879,38794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3879,38792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3880,38798,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3880,38796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3880,38801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3880,38800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3881,38805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3880,38804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3881,38809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3881,38807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3881,38813,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3881,38811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3882,38816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3881,38815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3882,38820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3882,38819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3882,38824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3882,38822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3883,38828,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3883,38826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3883,38831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3883,38830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3884,38835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3883,38834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3884,38839,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3884,38837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3884,38843,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3884,38841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3885,38846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3884,38845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3885,38850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3885,38849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3885,38854,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3885,38852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3886,38858,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3886,38856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3886,38861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3886,38860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3887,38865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3886,38864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3887,38869,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3887,38867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3887,38873,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3887,38871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3888,38876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3887,38875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3888,38880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3888,38879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3888,38884,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3888,38882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3889,38888,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3889,38886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3889,38891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3889,38890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3890,38895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3889,38894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3890,38899,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3890,38897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3890,38903,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3890,38901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3890,38905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3891,38906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3891,38910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3891,38909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3891,38914,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3891,38912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3892,38918,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3892,38916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3892,38921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3892,38920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3893,38925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3892,38924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3893,38929,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3893,38927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3893,38933,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3893,38931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3894,38936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3893,38935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3894,38940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3894,38939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3894,38944,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3894,38942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3895,38948,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3895,38946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3895,38951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3895,38950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3896,38955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3895,38954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3896,38959,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3896,38957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3896,38963,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3896,38961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3897,38966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3896,38965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3897,38970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3897,38969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3897,38974,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3897,38972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3898,38978,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3898,38976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3898,38981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3898,38980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3899,38985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3898,38984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3899,38989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3899,38987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3899,38993,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3899,38991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3900,38996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3899,38995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3900,39000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3900,38999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3900,39004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3900,39002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3901,39008,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3901,39006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3901,39011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3901,39010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3902,39015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3901,39014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3902,39019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3902,39017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3902,39023,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3902,39021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3903,39026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3902,39025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3903,39030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3903,39029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3903,39034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3903,39032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3904,39038,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3904,39036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3904,39041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3904,39040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3905,39045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3904,39044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3905,39049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3905,39047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3905,39053,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3905,39051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3906,39056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3905,39055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3906,39060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3906,39059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3906,39064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3906,39062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3907,39068,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3907,39066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3907,39071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3907,39070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3908,39075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3907,39074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3908,39079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3908,39077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3908,39083,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3908,39081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3909,39086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3908,39085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3909,39090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3909,39089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3909,39094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3909,39092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3910,39098,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3910,39096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3910,39101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3910,39100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3911,39105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3910,39104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3911,39109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3911,39107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3911,39113,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3911,39111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3912,39116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3911,39115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3912,39120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3912,39119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3912,39124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3912,39122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3913,39128,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3913,39126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3913,39131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3913,39130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3914,39135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3913,39134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3914,39139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3914,39137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3914,39143,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3914,39141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3915,39146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3914,39145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3915,39150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3915,39149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3915,39154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3915,39152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3916,39158,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3916,39156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3916,39161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3916,39160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3917,39165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3916,39164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3917,39169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3917,39167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3917,39173,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3917,39171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3918,39176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3917,39175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3918,39180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3918,39179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3918,39184,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3918,39182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3919,39188,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3919,39186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3919,39191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3919,39190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3920,39195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3919,39194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3920,39199,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3920,39197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3920,39203,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3920,39201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3921,39206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3920,39205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3921,39210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3921,39209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3921,39214,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3921,39212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3922,39218,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3922,39216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3922,39221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3922,39220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3923,39225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3922,39224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3923,39229,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3923,39227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3923,39233,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3923,39231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3924,39236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3923,39235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3924,39240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3924,39239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3924,39244,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3924,39242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3925,39248,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3925,39246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3925,39250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3925,39251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3926,39255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3925,39254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3926,39259,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3926,39257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3926,39263,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3926,39261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3927,39266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3926,39265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3927,39270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3927,39269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3927,39274,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3927,39272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3928,39278,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3928,39276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3928,39281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3928,39280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3929,39285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3928,39284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3929,39289,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3929,39287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3929,39293,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3929,39291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3930,39296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3929,39295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3930,39300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3930,39299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3930,39304,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3930,39302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3931,39308,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3931,39306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3931,39311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3931,39310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3932,39315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3931,39314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3932,39319,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3932,39317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3932,39323,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3932,39321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3933,39326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3932,39325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3933,39330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3933,39329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3933,39334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3933,39332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3934,39338,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3934,39336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3934,39341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3934,39340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3935,39345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3934,39344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3935,39349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3935,39347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3935,39353,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3935,39351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3936,39356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3935,39355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3936,39360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3936,39359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3936,39364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3936,39362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3937,39368,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3937,39366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3937,39371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3937,39370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3938,39375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3937,39374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3938,39379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3938,39377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3938,39383,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3938,39381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3939,39386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3938,39385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3939,39390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3939,39389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3939,39394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3939,39392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3940,39398,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3940,39396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3940,39401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3940,39400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3941,39405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3940,39404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3941,39409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3941,39407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3941,39413,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3941,39411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3942,39416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3941,39415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3942,39420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3942,39419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3942,39424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3942,39422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3943,39428,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3943,39426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3943,39431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3943,39430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3944,39435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3943,39434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3944,39439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3944,39437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3944,39443,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3944,39441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3945,39446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3944,39445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3945,39450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3945,39449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3945,39454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3945,39452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3946,39458,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3946,39456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3946,39461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3946,39460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3946,39464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3947,39465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3947,39469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3947,39467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3947,39473,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3947,39471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3948,39476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3947,39475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3948,39480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3948,39479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3948,39484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3948,39482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3949,39488,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3949,39486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3949,39491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3949,39490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3950,39495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3949,39494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3950,39499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3950,39497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3950,39503,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3950,39501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3951,39506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3950,39505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3951,39510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3951,39509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3951,39514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3951,39512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3952,39518,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3952,39516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3952,39521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3952,39520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3953,39525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3952,39524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3953,39529,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3953,39527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3953,39533,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3953,39531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3954,39536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3953,39535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3954,39540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3954,39539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3954,39544,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3954,39542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3955,39548,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3955,39546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3955,39551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3955,39550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3956,39555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3955,39554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3956,39559,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3956,39557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3956,39563,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3956,39561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3957,39566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3956,39565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3957,39570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3957,39569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3957,39574,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3957,39572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3958,39578,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3958,39576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3958,39581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3958,39580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3959,39585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3958,39584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3959,39589,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3959,39587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3959,39593,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3959,39591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3959,39595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3960,39596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3960,39600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3960,39599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3960,39604,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3960,39602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3961,39608,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3961,39606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3961,39611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3961,39610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3962,39615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3961,39614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3962,39619,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3962,39617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3962,39623,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3962,39621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3963,39626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3962,39625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3963,39630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3963,39629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3963,39634,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3963,39632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3964,39638,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3964,39636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3964,39641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3964,39640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3965,39645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3964,39644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3965,39649,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3965,39647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3965,39653,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3965,39651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3966,39656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3965,39655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3966,39660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3966,39659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3966,39664,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3966,39662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3967,39668,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3967,39666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3967,39671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3967,39670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3968,39675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3967,39674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3968,39679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3968,39677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3968,39683,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3968,39681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3969,39686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3968,39685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3969,39690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3969,39689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3969,39694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3969,39692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3970,39698,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3970,39696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3970,39701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3970,39700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3971,39705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3970,39704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3971,39709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3971,39707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3971,39713,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3971,39711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3972,39716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3971,39715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3972,39720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3972,39719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3972,39724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3972,39722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3973,39728,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3973,39726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3973,39731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3973,39730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3974,39735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3973,39734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3974,39739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3974,39737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3974,39743,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3974,39741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3975,39746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3974,39745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3975,39750,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3975,39749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3975,39754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3975,39752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3976,39758,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3976,39756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3976,39761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3976,39760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3977,39765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3976,39764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3977,39769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3977,39767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3977,39773,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3977,39771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3978,39776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3977,39775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3978,39780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3978,39779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3978,39784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3978,39782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3979,39788,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3979,39786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3979,39791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3979,39790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3980,39795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3979,39794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3980,39799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3980,39797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3980,39803,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3980,39801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3981,39806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3980,39805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3981,39809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3981,39810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3981,39814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3981,39812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3982,39818,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3982,39816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3982,39821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3982,39820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3983,39825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3982,39824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3983,39829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3983,39827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3983,39833,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3983,39831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3984,39836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3983,39835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3984,39840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3984,39839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3984,39844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3984,39842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3985,39848,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3985,39846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3985,39851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3985,39850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3986,39855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3985,39854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3986,39859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3986,39857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3986,39863,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3986,39861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3987,39866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3986,39865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3987,39870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3987,39869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3987,39874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3987,39872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3988,39878,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3988,39876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3988,39881,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3988,39880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3989,39885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3988,39884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3989,39889,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3989,39887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3989,39893,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3989,39891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3990,39896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3989,39895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3990,39900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3990,39899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3990,39904,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3990,39902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3991,39908,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3991,39906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3991,39911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3991,39910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3992,39915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3991,39914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3992,39919,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3992,39917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3992,39923,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3992,39921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3993,39926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3992,39925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3993,39930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3993,39929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3993,39934,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3993,39932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3994,39938,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3994,39936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3994,39941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3994,39940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3995,39945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3994,39944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3995,39949,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3995,39947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3995,39953,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3995,39951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3995,39955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3996,39956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3996,39960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3996,39959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3996,39964,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3996,39962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3997,39968,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3997,39966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3997,39971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3997,39970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3998,39975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3997,39974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3998,39979,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3998,39977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3998,39983,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3998,39981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3999,39986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3998,39985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3999,39990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3999,39989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3999,39994,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=3999,39992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4000,39998,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4000,39996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4000,40001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4000,40000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4001,40005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4000,40004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4001,40009,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4001,40007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4001,40013,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4001,40011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4002,40016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4001,40015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4002,40020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4002,40019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4002,40024,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4002,40022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4003,40028,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4003,40026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4003,40031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4003,40030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4004,40035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4003,40034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4004,40039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4004,40037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4004,40043,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4004,40041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4005,40046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4004,40045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4005,40050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4005,40049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4005,40054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4005,40052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4006,40058,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4006,40056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4006,40061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4006,40060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4007,40065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4006,40064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4007,40069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4007,40067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4007,40073,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4007,40071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4008,40076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4007,40075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4008,40080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4008,40079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4008,40084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4008,40082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4009,40088,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4009,40086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4009,40091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4009,40090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4010,40095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4009,40094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4010,40099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4010,40097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4010,40103,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4010,40101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4011,40106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4010,40105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4011,40110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4011,40109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4011,40114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4011,40112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4012,40118,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4012,40116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4012,40121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4012,40120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4013,40125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4012,40124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4013,40129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4013,40127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4013,40133,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4013,40131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4014,40136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4013,40135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4014,40140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4014,40139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4014,40144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4014,40142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4015,40148,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4015,40146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4015,40151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4015,40150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4015,40154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4016,40155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4016,40159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4016,40157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4016,40163,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4016,40161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4017,40166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4016,40165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4017,40170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4017,40169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4017,40174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4017,40172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4018,40178,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4018,40176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4018,40181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4018,40180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4019,40185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4018,40184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4019,40189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4019,40187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4019,40193,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4019,40191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4020,40196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4019,40195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4020,40200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4020,40199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4020,40204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4020,40202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4021,40208,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4021,40206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4021,40211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4021,40210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4022,40215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4021,40214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4022,40219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4022,40217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4022,40223,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4022,40221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4023,40226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4022,40225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4023,40230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4023,40229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4023,40234,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4023,40232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4024,40238,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4024,40236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4024,40241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4024,40240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4025,40245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4024,40244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4025,40249,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4025,40247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4025,40253,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4025,40251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4026,40256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4025,40255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4026,40260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4026,40259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4026,40264,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4026,40262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4027,40268,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4027,40266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4027,40271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4027,40270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4028,40275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4027,40274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4028,40279,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4028,40277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4028,40283,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4028,40281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4029,40286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4028,40285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4029,40290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4029,40289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4029,40294,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4029,40292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4030,40298,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4030,40296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4030,40300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4030,40301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4031,40305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4030,40304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4031,40309,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4031,40307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4031,40313,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4031,40311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4032,40316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4031,40315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4032,40320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4032,40319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4032,40324,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4032,40322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4033,40328,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4033,40326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4033,40331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4033,40330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4034,40335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4033,40334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4034,40339,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4034,40337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4034,40343,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4034,40341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4035,40346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4034,40345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4035,40350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4035,40349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4035,40354,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4035,40352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4036,40358,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4036,40356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4036,40361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4036,40360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4037,40365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4036,40364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4037,40369,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4037,40367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4037,40373,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4037,40371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4038,40376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4037,40375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4038,40380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4038,40379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4038,40384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4038,40382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4039,40388,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4039,40386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4039,40391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4039,40390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4040,40395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4039,40394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4040,40399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4040,40397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4040,40403,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4040,40401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4041,40406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4040,40405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4041,40410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4041,40409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4041,40414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4041,40412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4042,40418,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4042,40416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4042,40421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4042,40420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4043,40425,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4042,40424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4043,40429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4043,40427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4043,40433,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4043,40431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4044,40436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4043,40435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4044,40440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4044,40439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4044,40444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4044,40442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4045,40448,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4045,40446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4045,40451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4045,40450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4046,40455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4045,40454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4046,40459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4046,40457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4046,40463,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4046,40461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4047,40466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4046,40465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4047,40470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4047,40469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4047,40474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4047,40472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4048,40478,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4048,40476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4048,40481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4048,40480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4049,40485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4048,40484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4049,40489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4049,40487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4049,40493,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4049,40491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4050,40496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4049,40495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4050,40500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4050,40499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4050,40504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4050,40502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4051,40508,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4051,40506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4051,40511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4051,40510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4051,40514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4052,40515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4052,40519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4052,40517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4052,40523,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4052,40521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4053,40526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4052,40525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4053,40530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4053,40529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4053,40534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4053,40532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4054,40538,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4054,40536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4054,40541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4054,40540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4055,40545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4054,40544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4055,40549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4055,40547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4055,40553,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4055,40551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4056,40556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4055,40555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4056,40560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4056,40559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4056,40564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4056,40562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4057,40568,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4057,40566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4057,40571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4057,40570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4058,40575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4057,40574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4058,40579,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4058,40577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4058,40583,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4058,40581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4059,40586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4058,40585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4059,40590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4059,40589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4059,40594,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4059,40592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4060,40598,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4060,40596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4060,40601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4060,40600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4061,40605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4060,40604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4061,40609,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4061,40607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4061,40613,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4061,40611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4062,40616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4061,40615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4062,40620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4062,40619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4062,40624,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4062,40622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4063,40628,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4063,40626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4063,40631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4063,40630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4064,40635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4063,40634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4064,40639,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4064,40637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4064,40643,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4064,40641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4064,40645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4065,40646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4065,40650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4065,40649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4065,40654,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4065,40652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4066,40658,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4066,40656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4066,40661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4066,40660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4067,40665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4066,40664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4067,40669,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4067,40667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4067,40673,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4067,40671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4068,40676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4067,40675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4068,40680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4068,40679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4068,40684,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4068,40682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4069,40688,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4069,40686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4069,40691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4069,40690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4070,40695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4069,40694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4070,40699,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4070,40697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4070,40703,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4070,40701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4071,40706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4070,40705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4071,40710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4071,40709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4071,40714,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4071,40712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4072,40718,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4072,40716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4072,40721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4072,40720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4073,40725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4072,40724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4073,40729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4073,40727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4073,40733,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4073,40731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4074,40736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4073,40735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4074,40740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4074,40739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4074,40744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4074,40742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4075,40748,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4075,40746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4075,40751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4075,40750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4076,40755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4075,40754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4076,40759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4076,40757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4076,40763,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4076,40761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4077,40766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4076,40765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4077,40770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4077,40769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4077,40774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4077,40772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4078,40778,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4078,40776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4078,40781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4078,40780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4079,40785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4078,40784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4079,40789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4079,40787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4079,40793,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4079,40791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4080,40796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4079,40795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4080,40800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4080,40799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4080,40804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4080,40802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4081,40808,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4081,40806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4081,40811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4081,40810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4082,40815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4081,40814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4082,40819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4082,40817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4082,40823,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4082,40821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4083,40826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4082,40825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4083,40830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4083,40829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4083,40834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4083,40832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4084,40838,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4084,40836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4084,40841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4084,40840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4085,40845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4084,40844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4085,40849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4085,40847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4085,40853,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4085,40851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4086,40856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4085,40855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4086,40859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4086,40860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4086,40864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4086,40862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4087,40868,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4087,40866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4087,40871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4087,40870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4088,40875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4087,40874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4088,40879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4088,40877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4088,40883,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4088,40881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4089,40886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4088,40885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4089,40890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4089,40889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4089,40894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4089,40892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4090,40898,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4090,40896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4090,40901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4090,40900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4091,40905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4090,40904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4091,40909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4091,40907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4091,40913,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4091,40911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4092,40916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4091,40915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4092,40920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4092,40919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4092,40924,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4092,40922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4093,40928,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4093,40926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4093,40931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4093,40930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4094,40935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4093,40934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4094,40939,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4094,40937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4094,40943,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4094,40941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4095,40946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4094,40945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4095,40950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4095,40949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4095,40954,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4095,40952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4096,40958,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4096,40956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4096,40961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4096,40960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4097,40965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4096,40964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4097,40969,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4097,40967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4097,40973,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4097,40971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4098,40976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4097,40975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4098,40980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4098,40979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4098,40984,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4098,40982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4099,40988,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4099,40986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4099,40991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4099,40990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4100,40995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4099,40994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4100,40999,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4100,40997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4100,41003,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4100,41001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4101,41006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4100,41005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4101,41010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4101,41009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4101,41014,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4101,41012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4102,41018,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4102,41016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4102,41021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4102,41020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4103,41025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4102,41024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4103,41029,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4103,41027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4103,41033,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4103,41031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4104,41036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4103,41035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4104,41040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4104,41039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4104,41044,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4104,41042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4105,41048,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4105,41046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4105,41051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4105,41050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4106,41055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4105,41054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4106,41059,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4106,41057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4106,41063,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4106,41061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4107,41066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4106,41065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4107,41070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4107,41069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4107,41074,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4107,41072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4108,41078,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4108,41076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4108,41081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4108,41080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4109,41085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4108,41084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4109,41089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4109,41087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4109,41093,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4109,41091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4110,41096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4109,41095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4110,41100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4110,41099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4110,41104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4110,41102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4111,41108,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4111,41106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4111,41111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4111,41110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4112,41115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4111,41114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4112,41119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4112,41117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4112,41123,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4112,41121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4113,41126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4112,41125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4113,41130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4113,41129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4113,41134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4113,41132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4114,41138,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4114,41136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4114,41141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4114,41140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4115,41145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4114,41144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4115,41149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4115,41147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4115,41153,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4115,41151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4116,41156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4115,41155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4116,41160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4116,41159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4116,41164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4116,41162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4117,41168,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4117,41166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4117,41171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4117,41170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4118,41175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4117,41174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4118,41179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4118,41177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4118,41183,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4118,41181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4119,41186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4118,41185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4119,41190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4119,41189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4119,41194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4119,41192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4120,41198,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4120,41196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4120,41201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4120,41200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4120,41204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4121,41205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4121,41209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4121,41207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4121,41213,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4121,41211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4122,41216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4121,41215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4122,41220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4122,41219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4122,41224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4122,41222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4123,41228,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4123,41226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4123,41231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4123,41230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4124,41235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4123,41234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4124,41239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4124,41237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4124,41243,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4124,41241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4125,41246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4124,41245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4125,41250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4125,41249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4125,41254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4125,41252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4126,41258,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4126,41256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4126,41261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4126,41260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4127,41265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4126,41264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4127,41269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4127,41267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4127,41273,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4127,41271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4128,41276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4127,41275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4128,41280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4128,41279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4128,41284,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4128,41282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4129,41288,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4129,41286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4129,41291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4129,41290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4130,41295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4129,41294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4130,41299,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4130,41297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4130,41303,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4130,41301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4131,41306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4130,41305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4131,41310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4131,41309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4131,41314,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4131,41312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4132,41318,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4132,41316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4132,41321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4132,41320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4133,41325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4132,41324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4133,41329,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4133,41327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4133,41333,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4133,41331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4134,41336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4133,41335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4134,41340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4134,41339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4134,41344,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4134,41342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4135,41348,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4135,41346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4135,41350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4135,41351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4136,41355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4135,41354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4136,41359,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4136,41357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4136,41363,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4136,41361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4137,41366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4136,41365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4137,41370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4137,41369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4137,41374,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4137,41372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4138,41378,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4138,41376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4138,41381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4138,41380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4139,41385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4138,41384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4139,41389,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4139,41387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4139,41393,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4139,41391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4140,41396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4139,41395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4140,41400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4140,41399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4140,41404,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4140,41402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4141,41408,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4141,41406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4141,41411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4141,41410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4142,41415,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4141,41414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4142,41419,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4142,41417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4142,41423,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4142,41421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4143,41426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4142,41425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4143,41430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4143,41429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4143,41434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4143,41432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4144,41438,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4144,41436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4144,41441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4144,41440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4145,41445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4144,41444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4145,41449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4145,41447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4145,41453,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4145,41451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4146,41456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4145,41455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4146,41460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4146,41459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4146,41464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4146,41462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4147,41468,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4147,41466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4147,41471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4147,41470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4148,41475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4147,41474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4148,41479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4148,41477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4148,41483,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4148,41481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4149,41486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4148,41485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4149,41490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4149,41489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4149,41494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4149,41492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4150,41498,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4150,41496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4150,41501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4150,41500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4151,41505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4150,41504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4151,41509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4151,41507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4151,41513,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4151,41511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4152,41516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4151,41515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4152,41520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4152,41519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4152,41524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4152,41522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4153,41528,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4153,41526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4153,41531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4153,41530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4154,41535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4153,41534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4154,41539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4154,41537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4154,41543,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4154,41541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4155,41546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4154,41545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4155,41550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4155,41549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4155,41554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4155,41552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4156,41558,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4156,41556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4156,41561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4156,41560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4157,41565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4156,41564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4157,41569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4157,41567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4157,41573,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4157,41571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4158,41576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4157,41575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4158,41580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4158,41579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4158,41584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4158,41582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4159,41588,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4159,41586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4159,41591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4159,41590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4160,41595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4159,41594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4160,41599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4160,41597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4160,41603,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4160,41601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4161,41606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4160,41605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4161,41610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4161,41609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4161,41614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4161,41612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4162,41618,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4162,41616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4162,41621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4162,41620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4163,41625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4162,41624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4163,41629,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4163,41627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4163,41633,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4163,41631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4164,41636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4163,41635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4164,41640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4164,41639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4164,41644,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4164,41642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4165,41648,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4165,41646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4165,41651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4165,41650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4166,41655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4165,41654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4166,41659,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4166,41657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4166,41663,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4166,41661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4167,41666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4166,41665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4167,41670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4167,41669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4167,41674,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4167,41672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4168,41678,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4168,41676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4168,41681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4168,41680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4169,41685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4168,41684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4169,41689,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4169,41687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4169,41693,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4169,41691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4169,41695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4170,41696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4170,41700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4170,41699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4170,41704,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4170,41702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4171,41708,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4171,41706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4171,41711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4171,41710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4172,41715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4171,41714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4172,41719,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4172,41717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4172,41723,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4172,41721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4173,41726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4172,41725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4173,41730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4173,41729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4173,41734,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4173,41732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4174,41738,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4174,41736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4174,41741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4174,41740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4175,41745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4174,41744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4175,41749,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4175,41747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4175,41753,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4175,41751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4176,41756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4175,41755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4176,41760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4176,41759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4176,41764,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4176,41762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4177,41768,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4177,41766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4177,41771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4177,41770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4178,41775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4177,41774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4178,41779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4178,41777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4178,41783,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4178,41781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4179,41786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4178,41785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4179,41790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4179,41789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4179,41794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4179,41792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4180,41798,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4180,41796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4180,41801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4180,41800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4181,41805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4180,41804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4181,41809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4181,41807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4181,41813,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4181,41811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4182,41816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4181,41815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4182,41820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4182,41819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4182,41824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4182,41822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4183,41828,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4183,41826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4183,41831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4183,41830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4184,41835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4183,41834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4184,41839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4184,41837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4184,41843,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4184,41841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4185,41846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4184,41845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4185,41850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4185,41849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4185,41854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4185,41852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4186,41858,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4186,41856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4186,41861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4186,41860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4187,41865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4186,41864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4187,41869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4187,41867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4187,41873,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4187,41871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4188,41876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4187,41875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4188,41880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4188,41879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4188,41884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4188,41882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4189,41888,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4189,41886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4189,41891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4189,41890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4190,41895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4189,41894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4190,41899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4190,41897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4190,41903,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4190,41901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4191,41906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4190,41905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4191,41909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4191,41910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4191,41914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4191,41912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4192,41918,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4192,41916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4192,41921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4192,41920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4193,41925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4192,41924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4193,41929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4193,41927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4193,41933,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4193,41931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4194,41936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4193,41935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4194,41940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4194,41939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4194,41944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4194,41942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4195,41948,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4195,41946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4195,41951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4195,41950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4196,41955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4195,41954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4196,41959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4196,41957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4196,41963,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4196,41961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4197,41966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4196,41965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4197,41970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4197,41969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4197,41974,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4197,41972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4198,41978,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4198,41976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4198,41981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4198,41980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4199,41985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4198,41984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4199,41989,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4199,41987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4199,41993,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4199,41991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4200,41996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4199,41995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4200,42000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4200,41999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4200,42004,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4200,42002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4201,42008,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4201,42006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4201,42011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4201,42010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4202,42015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4201,42014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4202,42019,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4202,42017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4202,42023,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4202,42021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4203,42026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4202,42025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4203,42030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4203,42029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4203,42034,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4203,42032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4204,42038,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4204,42036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4204,42040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4204,42041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4205,42045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4204,42044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4205,42049,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4205,42047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4205,42053,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4205,42051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4206,42056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4205,42055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4206,42060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4206,42059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4206,42064,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4206,42062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4207,42068,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4207,42066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4207,42071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4207,42070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4208,42075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4207,42074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4208,42079,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4208,42077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4208,42083,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4208,42081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4209,42086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4208,42085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4209,42090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4209,42089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4209,42094,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4209,42092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4210,42098,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4210,42096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4210,42101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4210,42100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4211,42105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4210,42104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4211,42109,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4211,42107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4211,42113,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4211,42111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4212,42116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4211,42115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4212,42120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4212,42119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4212,42124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4212,42122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4213,42128,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4213,42126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4213,42131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4213,42130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4214,42135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4213,42134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4214,42139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4214,42137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4214,42143,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4214,42141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4215,42146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4214,42145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4215,42150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4215,42149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4215,42154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4215,42152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4216,42158,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4216,42156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4216,42161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4216,42160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4217,42165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4216,42164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4217,42169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4217,42167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4217,42173,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4217,42171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4218,42176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4217,42175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4218,42180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4218,42179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4218,42184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4218,42182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4219,42188,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4219,42186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4219,42191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4219,42190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4220,42195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4219,42194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4220,42199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4220,42197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4220,42203,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4220,42201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4221,42206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4220,42205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4221,42210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4221,42209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4221,42214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4221,42212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4222,42218,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4222,42216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4222,42221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4222,42220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4223,42225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4222,42224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4223,42229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4223,42227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4223,42233,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4223,42231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4224,42236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4223,42235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4224,42240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4224,42239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4224,42244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4224,42242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4225,42248,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4225,42246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4225,42251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4225,42250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4225,42254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4226,42255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4226,42259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4226,42257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4226,42263,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4226,42261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4227,42266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4226,42265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4227,42270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4227,42269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4227,42274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4227,42272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4228,42278,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4228,42276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4228,42281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4228,42280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4229,42285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4228,42284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4229,42289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4229,42287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4229,42293,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4229,42291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4230,42296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4229,42295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4230,42300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4230,42299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4230,42304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4230,42302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4231,42308,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4231,42306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4231,42311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4231,42310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4232,42315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4231,42314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4232,42319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4232,42317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4232,42323,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4232,42321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4233,42326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4232,42325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4233,42330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4233,42329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4233,42334,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4233,42332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4234,42338,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4234,42336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4234,42341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4234,42340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4235,42345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4234,42344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4235,42349,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4235,42347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4235,42353,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4235,42351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4236,42356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4235,42355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4236,42360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4236,42359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4236,42364,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4236,42362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4237,42368,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4237,42366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4237,42371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4237,42370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4238,42375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4237,42374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4238,42379,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4238,42377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4238,42383,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4238,42381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4239,42386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4238,42385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4239,42390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4239,42389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4239,42394,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4239,42392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4240,42398,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4240,42396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4240,42400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4240,42401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4241,42405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4240,42404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4241,42409,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4241,42407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4241,42413,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4241,42411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4242,42416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4241,42415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4242,42420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4242,42419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4242,42424,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4242,42422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4243,42428,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4243,42426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4243,42431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4243,42430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4244,42435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4243,42434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4244,42439,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4244,42437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4244,42443,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4244,42441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4245,42446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4244,42445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4245,42450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4245,42449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4245,42454,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4245,42452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4246,42458,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4246,42456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4246,42461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4246,42460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4247,42465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4246,42464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4247,42469,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4247,42467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4247,42473,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4247,42471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4248,42476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4247,42475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4248,42480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4248,42479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4248,42484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4248,42482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4249,42488,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4249,42486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4249,42491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4249,42490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4250,42495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4249,42494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4250,42499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4250,42497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4250,42503,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4250,42501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4251,42506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4250,42505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4251,42510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4251,42509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4251,42514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4251,42512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4252,42518,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4252,42516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4252,42521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4252,42520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4253,42525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4252,42524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4253,42529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4253,42527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4253,42533,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4253,42531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4254,42536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4253,42535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4254,42540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4254,42539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4254,42544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4254,42542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4255,42548,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4255,42546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4255,42551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4255,42550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4256,42555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4255,42554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4256,42559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4256,42557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4256,42563,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4256,42561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4257,42566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4256,42565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4257,42570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4257,42569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4257,42574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4257,42572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4258,42578,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4258,42576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4258,42581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4258,42580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4259,42585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4258,42584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4259,42589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4259,42587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4259,42593,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4259,42591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4260,42596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4259,42595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4260,42599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4260,42600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4260,42604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4260,42602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4261,42608,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4261,42606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4261,42611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4261,42610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4262,42615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4261,42614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4262,42619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4262,42617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4262,42623,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4262,42621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4263,42626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4262,42625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4263,42630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4263,42629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4263,42634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4263,42632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4264,42638,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4264,42636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4264,42641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4264,42640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4265,42645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4264,42644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4265,42649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4265,42647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4265,42653,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4265,42651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4266,42656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4265,42655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4266,42660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4266,42659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4266,42664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4266,42662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4267,42668,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4267,42666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4267,42671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4267,42670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4268,42675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4267,42674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4268,42679,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4268,42677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4268,42683,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4268,42681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4269,42686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4268,42685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4269,42690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4269,42689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4269,42694,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4269,42692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4270,42698,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4270,42696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4270,42701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4270,42700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4271,42705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4270,42704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4271,42709,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4271,42707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4271,42713,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4271,42711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4272,42716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4271,42715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4272,42720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4272,42719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4272,42724,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4272,42722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4273,42728,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4273,42726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4273,42731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4273,42730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4274,42735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4273,42734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4274,42739,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4274,42737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4274,42743,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4274,42741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4274,42745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4275,42746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4275,42750,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4275,42749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4275,42754,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4275,42752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4276,42758,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4276,42756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4276,42761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4276,42760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4277,42765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4276,42764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4277,42769,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4277,42767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4277,42773,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4277,42771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4278,42776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4277,42775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4278,42780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4278,42779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4278,42784,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4278,42782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4279,42788,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4279,42786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4279,42791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4279,42790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4280,42795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4279,42794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4280,42799,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4280,42797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4280,42803,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4280,42801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4281,42806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4280,42805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4281,42810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4281,42809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4281,42814,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4281,42812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4282,42818,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4282,42816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4282,42821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4282,42820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4283,42825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4282,42824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4283,42829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4283,42827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4283,42833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4283,42831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4284,42836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4283,42835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4284,42840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4284,42839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4284,42844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4284,42842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4285,42848,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4285,42846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4285,42851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4285,42850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4286,42855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4285,42854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4286,42859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4286,42857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4286,42863,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4286,42861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4287,42866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4286,42865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4287,42870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4287,42869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4287,42874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4287,42872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4288,42878,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4288,42876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4288,42881,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4288,42880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4289,42885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4288,42884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4289,42889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4289,42887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4289,42893,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4289,42891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4290,42896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4289,42895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4290,42900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4290,42899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4290,42904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4290,42902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4291,42908,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4291,42906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4291,42911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4291,42910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4292,42915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4291,42914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4292,42919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4292,42917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4292,42923,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4292,42921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4293,42926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4292,42925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4293,42930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4293,42929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4293,42934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4293,42932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4294,42938,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4294,42936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4294,42941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4294,42940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4295,42945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4294,42944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4295,42949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4295,42947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4295,42953,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4295,42951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4296,42956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4295,42955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4296,42960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4296,42959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4296,42964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4296,42962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4297,42968,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4297,42966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4297,42971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4297,42970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4298,42975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4297,42974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4298,42979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4298,42977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4298,42983,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4298,42981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4299,42986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4298,42985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4299,42990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4299,42989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4299,42994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4299,42992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4300,42998,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4300,42996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4300,43001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4300,43000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4301,43005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4300,43004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4301,43009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4301,43007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4301,43013,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4301,43011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4302,43016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4301,43015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4302,43020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4302,43019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4302,43024,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4302,43022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4303,43028,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4303,43026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4303,43031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4303,43030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4304,43035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4303,43034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4304,43039,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4304,43037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4304,43043,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4304,43041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4305,43046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4304,43045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4305,43050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4305,43049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4305,43054,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4305,43052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4306,43058,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4306,43056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4306,43061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4306,43060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4307,43065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4306,43064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4307,43069,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4307,43067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4307,43073,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4307,43071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4308,43076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4307,43075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4308,43080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4308,43079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4308,43084,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4308,43082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4309,43088,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4309,43086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4309,43090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4309,43091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4310,43095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4309,43094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4310,43099,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4310,43097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4310,43103,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4310,43101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4311,43106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4310,43105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4311,43110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4311,43109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4311,43114,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4311,43112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4312,43118,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4312,43116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4312,43121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4312,43120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4313,43125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4312,43124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4313,43129,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4313,43127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4313,43133,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4313,43131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4314,43136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4313,43135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4314,43140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4314,43139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4314,43144,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4314,43142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4315,43148,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4315,43146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4315,43151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4315,43150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4316,43155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4315,43154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4316,43159,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4316,43157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4316,43163,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4316,43161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4317,43166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4316,43165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4317,43170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4317,43169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4317,43174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4317,43172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4318,43178,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4318,43176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4318,43181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4318,43180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4319,43185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4318,43184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4319,43189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4319,43187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4319,43193,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4319,43191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4320,43196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4319,43195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4320,43200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4320,43199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4320,43204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4320,43202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4321,43208,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4321,43206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4321,43211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4321,43210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4322,43215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4321,43214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4322,43219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4322,43217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4322,43223,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4322,43221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4323,43226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4322,43225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4323,43230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4323,43229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4323,43234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4323,43232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4324,43238,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4324,43236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4324,43241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4324,43240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4325,43245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4324,43244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4325,43249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4325,43247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4325,43253,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4325,43251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4326,43256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4325,43255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4326,43260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4326,43259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4326,43264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4326,43262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4327,43268,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4327,43266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4327,43271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4327,43270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4328,43275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4327,43274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4328,43279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4328,43277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4328,43283,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4328,43281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4329,43286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4328,43285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4329,43290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4329,43289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4329,43294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4329,43292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4330,43298,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4330,43296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4330,43301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4330,43300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4330,43304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4331,43305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4331,43309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4331,43307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4331,43313,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4331,43311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4332,43316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4331,43315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4332,43320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4332,43319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4332,43324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4332,43322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4333,43328,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4333,43326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4333,43331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4333,43330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4334,43335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4333,43334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4334,43339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4334,43337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4334,43343,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4334,43341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4335,43346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4334,43345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4335,43350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4335,43349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4335,43354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4335,43352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4336,43358,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4336,43356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4336,43361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4336,43360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4337,43365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4336,43364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4337,43369,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4337,43367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4337,43373,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4337,43371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4338,43376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4337,43375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4338,43380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4338,43379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4338,43384,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4338,43382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4339,43388,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4339,43386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4339,43391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4339,43390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4340,43395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4339,43394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4340,43399,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4340,43397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4340,43403,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4340,43401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4341,43406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4340,43405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4341,43410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4341,43409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4341,43414,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4341,43412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4342,43418,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4342,43416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4342,43421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4342,43420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4343,43425,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4342,43424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4343,43429,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4343,43427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4343,43433,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4343,43431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4344,43436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4343,43435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4344,43440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4344,43439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4344,43444,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4344,43442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4345,43448,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4345,43446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4345,43451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4345,43450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4346,43455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4345,43454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4346,43459,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4346,43457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4346,43463,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4346,43461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4347,43466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4346,43465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4347,43470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4347,43469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4347,43474,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4347,43472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4348,43478,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4348,43476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4348,43481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4348,43480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4349,43485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4348,43484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4349,43489,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4349,43487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4349,43493,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4349,43491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4350,43496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4349,43495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4350,43500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4350,43499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4350,43504,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4350,43502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4351,43508,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4351,43506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4351,43511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4351,43510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4352,43515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4351,43514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4352,43519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4352,43517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4352,43523,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4352,43521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4353,43526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4352,43525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4353,43530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4353,43529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4353,43534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4353,43532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4354,43538,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4354,43536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4354,43541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4354,43540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4355,43545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4354,43544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4355,43549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4355,43547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4355,43553,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4355,43551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4356,43556,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4355,43555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4356,43560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4356,43559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4356,43564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4356,43562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4357,43568,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4357,43566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4357,43571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4357,43570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4358,43575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4357,43574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4358,43579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4358,43577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4358,43583,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4358,43581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4359,43586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4358,43585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4359,43590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4359,43589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4359,43594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4359,43592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4360,43598,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4360,43596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4360,43601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4360,43600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4361,43605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4360,43604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4361,43609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4361,43607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4361,43613,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4361,43611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4362,43616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4361,43615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4362,43620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4362,43619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4362,43624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4362,43622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4363,43628,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4363,43626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4363,43631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4363,43630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4364,43635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4363,43634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4364,43639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4364,43637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4364,43643,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4364,43641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4365,43646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4364,43645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4365,43649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4365,43650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4365,43654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4365,43652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4366,43658,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4366,43656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4366,43661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4366,43660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4367,43665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4366,43664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4367,43669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4367,43667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4367,43673,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4367,43671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4368,43676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4367,43675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4368,43680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4368,43679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4368,43684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4368,43682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4369,43688,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4369,43686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4369,43691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4369,43690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4370,43695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4369,43694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4370,43699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4370,43697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4370,43703,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4370,43701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4371,43706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4370,43705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4371,43710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4371,43709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4371,43714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4371,43712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4372,43718,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4372,43716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4372,43721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4372,43720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4373,43725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4372,43724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4373,43729,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4373,43727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4373,43733,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4373,43731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4374,43736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4373,43735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4374,43740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4374,43739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4374,43744,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4374,43742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4375,43748,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4375,43746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4375,43751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4375,43750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4376,43755,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4375,43754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4376,43759,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4376,43757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4376,43763,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4376,43761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4377,43766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4376,43765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4377,43770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4377,43769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4377,43774,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4377,43772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4378,43778,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4378,43776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4378,43781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4378,43780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4379,43785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4378,43784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4379,43789,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4379,43787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4379,43793,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4379,43791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4379,43795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4380,43796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4380,43800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4380,43799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4380,43804,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4380,43802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4381,43808,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4381,43806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4381,43811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4381,43810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4382,43815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4381,43814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4382,43819,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4382,43817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4382,43823,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4382,43821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4383,43826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4382,43825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4383,43830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4383,43829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4383,43834,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4383,43832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4384,43838,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4384,43836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4384,43841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4384,43840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4385,43845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4384,43844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4385,43849,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4385,43847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4385,43853,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4385,43851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4386,43856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4385,43855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4386,43860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4386,43859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4386,43864,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4386,43862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4387,43868,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4387,43866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4387,43871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4387,43870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4388,43875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4387,43874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4388,43879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4388,43877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4388,43883,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4388,43881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4389,43886,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4388,43885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4389,43890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4389,43889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4389,43894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4389,43892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4390,43898,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4390,43896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4390,43901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4390,43900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4391,43905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4390,43904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4391,43909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4391,43907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4391,43913,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4391,43911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4392,43916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4391,43915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4392,43920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4392,43919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4392,43924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4392,43922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4393,43928,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4393,43926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4393,43931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4393,43930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4394,43935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4393,43934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4394,43939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4394,43937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4394,43943,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4394,43941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4395,43946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4394,43945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4395,43950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4395,43949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4395,43954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4395,43952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4396,43958,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4396,43956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4396,43961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4396,43960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4397,43965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4396,43964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4397,43969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4397,43967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4397,43973,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4397,43971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4398,43976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4397,43975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4398,43980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4398,43979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4398,43984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4398,43982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4399,43988,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4399,43986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4399,43991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4399,43990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4400,43995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4399,43994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4400,43999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4400,43997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4400,44003,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4400,44001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4401,44006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4400,44005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4401,44010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4401,44009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4401,44014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4401,44012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4402,44018,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4402,44016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4402,44021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4402,44020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4403,44025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4402,44024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4403,44029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4403,44027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4403,44033,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4403,44031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4404,44036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4403,44035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4404,44040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4404,44039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4404,44044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4404,44042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4405,44048,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4405,44046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4405,44051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4405,44050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4406,44055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4405,44054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4406,44059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4406,44057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4406,44063,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4406,44061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4407,44066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4406,44065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4407,44070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4407,44069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4407,44074,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4407,44072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4408,44078,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4408,44076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4408,44081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4408,44080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4409,44085,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4408,44084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4409,44089,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4409,44087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4409,44093,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4409,44091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4410,44096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4409,44095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4410,44100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4410,44099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4410,44104,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4410,44102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4411,44108,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4411,44106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4411,44111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4411,44110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4412,44115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4411,44114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4412,44119,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4412,44117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4412,44123,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4412,44121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4413,44126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4412,44125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4413,44130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4413,44129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4413,44134,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4413,44132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4414,44138,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4414,44136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4414,44140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4414,44141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4415,44145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4414,44144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4415,44149,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4415,44147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4415,44153,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4415,44151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4416,44156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4415,44155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4416,44160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4416,44159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4416,44164,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4416,44162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4417,44168,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4417,44166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4417,44171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4417,44170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4418,44175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4417,44174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4418,44179,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4418,44177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4418,44183,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4418,44181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4419,44186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4418,44185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4419,44190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4419,44189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4419,44194,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4419,44192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4420,44198,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4420,44196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4420,44201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4420,44200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4421,44205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4420,44204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4421,44209,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4421,44207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4421,44213,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4421,44211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4422,44216,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4421,44215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4422,44220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4422,44219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4422,44224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4422,44222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4423,44228,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4423,44226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4423,44231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4423,44230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4424,44235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4423,44234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4424,44239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4424,44237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4424,44243,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4424,44241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4425,44246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4424,44245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4425,44250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4425,44249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4425,44254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4425,44252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4426,44258,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4426,44256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4426,44261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4426,44260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4427,44265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4426,44264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4427,44269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4427,44267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4427,44273,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4427,44271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4428,44276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4427,44275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4428,44280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4428,44279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4428,44284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4428,44282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4429,44288,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4429,44286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4429,44291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4429,44290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4430,44295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4429,44294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4430,44299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4430,44297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4430,44303,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4430,44301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4431,44306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4430,44305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4431,44310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4431,44309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4431,44314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4431,44312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4432,44318,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4432,44316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4432,44321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4432,44320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4433,44325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4432,44324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4433,44329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4433,44327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4433,44333,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4433,44331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4434,44336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4433,44335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4434,44340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4434,44339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4434,44344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4434,44342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4435,44348,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4435,44346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4435,44351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4435,44350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4435,44354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4436,44355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4436,44359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4436,44357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4436,44363,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4436,44361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4437,44366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4436,44365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4437,44370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4437,44369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4437,44374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4437,44372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4438,44378,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4438,44376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4438,44381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4438,44380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4439,44385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4438,44384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4439,44389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4439,44387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4439,44393,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4439,44391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4440,44396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4439,44395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4440,44400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4440,44399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4440,44404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4440,44402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4441,44408,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4441,44406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4441,44411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4441,44410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4442,44415,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4441,44414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4442,44419,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4442,44417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4442,44423,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4442,44421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4443,44426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4442,44425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4443,44430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4443,44429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4443,44434,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4443,44432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4444,44438,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4444,44436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4444,44441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4444,44440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4445,44445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4444,44444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4445,44449,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4445,44447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4445,44453,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4445,44451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4446,44456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4445,44455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4446,44460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4446,44459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4446,44464,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4446,44462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4447,44468,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4447,44466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4447,44471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4447,44470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4448,44475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4447,44474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4448,44479,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4448,44477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4448,44483,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4448,44481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4448,44485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4449,44486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4449,44490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4449,44489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4449,44494,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4449,44492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4450,44498,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4450,44496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4450,44501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4450,44500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4451,44505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4450,44504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4451,44509,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4451,44507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4451,44513,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4451,44511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4452,44516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4451,44515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4452,44520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4452,44519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4452,44524,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4452,44522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4453,44528,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4453,44526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4453,44531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4453,44530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4454,44535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4453,44534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4454,44539,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4454,44537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4454,44543,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4454,44541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4455,44546,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4454,44545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4455,44550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4455,44549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4455,44554,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4455,44552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4456,44558,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4456,44556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4456,44561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4456,44560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4457,44565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4456,44564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4457,44569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4457,44567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4457,44573,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4457,44571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4458,44576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4457,44575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4458,44580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4458,44579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4458,44584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4458,44582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4459,44588,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4459,44586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4459,44591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4459,44590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4460,44595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4459,44594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4460,44599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4460,44597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4460,44603,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4460,44601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4461,44606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4460,44605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4461,44610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4461,44609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4461,44614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4461,44612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4462,44618,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4462,44616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4462,44621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4462,44620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4463,44625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4462,44624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4463,44629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4463,44627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4463,44633,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4463,44631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4464,44636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4463,44635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4464,44640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4464,44639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4464,44644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4464,44642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4465,44648,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4465,44646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4465,44651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4465,44650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4466,44655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4465,44654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4466,44659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4466,44657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4466,44663,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4466,44661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4467,44666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4466,44665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4467,44670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4467,44669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4467,44674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4467,44672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4468,44678,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4468,44676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4468,44681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4468,44680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4469,44685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4468,44684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4469,44689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4469,44687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4469,44693,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4469,44691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4470,44696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4469,44695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4470,44699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4470,44700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4470,44704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4470,44702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4471,44708,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4471,44706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4471,44711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4471,44710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4472,44715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4471,44714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4472,44719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4472,44717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4472,44723,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4472,44721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4473,44726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4472,44725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4473,44730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4473,44729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4473,44734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4473,44732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4474,44738,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4474,44736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4474,44741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4474,44740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4475,44745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4474,44744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4475,44749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4475,44747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4475,44753,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4475,44751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4476,44756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4475,44755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4476,44760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4476,44759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4476,44764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4476,44762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4477,44768,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4477,44766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4477,44771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4477,44770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4478,44775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4477,44774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4478,44779,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4478,44777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4478,44783,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4478,44781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4479,44786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4478,44785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4479,44790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4479,44789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4479,44794,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4479,44792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4480,44798,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4480,44796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4480,44801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4480,44800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4481,44805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4480,44804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4481,44809,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4481,44807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4481,44813,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4481,44811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4482,44816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4481,44815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4482,44820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4482,44819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4482,44824,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4482,44822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4483,44828,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4483,44826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4483,44831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4483,44830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4484,44835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4483,44834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4484,44839,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4484,44837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4484,44843,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4484,44841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4485,44846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4484,44845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4485,44850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4485,44849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4485,44854,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4485,44852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4486,44858,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4486,44856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4486,44861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4486,44860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4487,44865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4486,44864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4487,44869,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4487,44867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4487,44873,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4487,44871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4488,44876,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4487,44875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4488,44880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4488,44879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4488,44884,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4488,44882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4489,44888,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4489,44886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4489,44891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4489,44890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4490,44895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4489,44894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4490,44899,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4490,44897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4490,44903,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4490,44901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4491,44906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4490,44905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4491,44910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4491,44909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4491,44914,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4491,44912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4492,44918,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4492,44916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4492,44921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4492,44920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4493,44925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4492,44924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4493,44929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4493,44927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4493,44933,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4493,44931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4494,44936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4493,44935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4494,44940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4494,44939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4494,44944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4494,44942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4495,44948,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4495,44946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4495,44951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4495,44950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4496,44955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4495,44954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4496,44959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4496,44957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4496,44963,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4496,44961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4497,44966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4496,44965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4497,44970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4497,44969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4497,44974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4497,44972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4498,44978,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4498,44976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4498,44981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4498,44980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4499,44985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4498,44984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4499,44989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4499,44987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4499,44993,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4499,44991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4500,44996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4499,44995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4500,45000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4500,44999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4500,45004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4500,45002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4501,45008,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4501,45006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4501,45011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4501,45010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4502,45015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4501,45014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4502,45019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4502,45017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4502,45023,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4502,45021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4503,45026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4502,45025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4503,45030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4503,45029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4503,45034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4503,45032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4504,45038,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4504,45036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4504,45041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4504,45040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4504,45044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4505,45045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4505,45049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4505,45047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4505,45053,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4505,45051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4506,45056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4505,45055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4506,45060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4506,45059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4506,45064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4506,45062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4507,45068,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4507,45066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4507,45071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4507,45070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4508,45075,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4507,45074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4508,45079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4508,45077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4508,45083,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4508,45081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4509,45086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4508,45085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4509,45090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4509,45089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4509,45094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4509,45092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4510,45098,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4510,45096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4510,45101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4510,45100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4511,45105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4510,45104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4511,45109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4511,45107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4511,45113,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4511,45111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4512,45116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4511,45115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4512,45120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4512,45119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4512,45124,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4512,45122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4513,45128,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4513,45126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4513,45131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4513,45130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4514,45135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4513,45134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4514,45139,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4514,45137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4514,45143,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4514,45141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4515,45146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4514,45145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4515,45150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4515,45149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4515,45154,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4515,45152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4516,45158,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4516,45156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4516,45161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4516,45160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4517,45165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4516,45164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4517,45169,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4517,45167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4517,45173,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4517,45171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4518,45176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4517,45175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4518,45180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4518,45179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4518,45184,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4518,45182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4519,45188,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4519,45186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4519,45190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4519,45191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4520,45195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4519,45194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4520,45199,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4520,45197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4520,45203,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4520,45201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4521,45206,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4520,45205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4521,45210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4521,45209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4521,45214,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4521,45212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4522,45218,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4522,45216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4522,45221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4522,45220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4523,45225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4522,45224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4523,45229,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4523,45227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4523,45233,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4523,45231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4524,45236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4523,45235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4524,45240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4524,45239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4524,45244,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4524,45242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4525,45248,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4525,45246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4525,45251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4525,45250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4526,45255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4525,45254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4526,45259,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4526,45257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4526,45263,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4526,45261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4527,45266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4526,45265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4527,45270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4527,45269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4527,45274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4527,45272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4528,45278,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4528,45276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4528,45281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4528,45280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4529,45285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4528,45284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4529,45289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4529,45287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4529,45293,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4529,45291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4530,45296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4529,45295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4530,45300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4530,45299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4530,45304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4530,45302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4531,45308,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4531,45306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4531,45311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4531,45310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4532,45315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4531,45314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4532,45319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4532,45317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4532,45323,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4532,45321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4533,45326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4532,45325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4533,45330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4533,45329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4533,45334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4533,45332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4534,45338,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4534,45336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4534,45341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4534,45340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4535,45345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4534,45344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4535,45349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4535,45347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4535,45353,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4535,45351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4536,45356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4535,45355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4536,45360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4536,45359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4536,45364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4536,45362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4537,45368,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4537,45366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4537,45371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4537,45370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4538,45375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4537,45374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4538,45379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4538,45377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4538,45383,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4538,45381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4539,45386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4538,45385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4539,45390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4539,45389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4539,45394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4539,45392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4540,45398,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4540,45396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4540,45401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4540,45400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4541,45405,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4540,45404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4541,45409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4541,45407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4541,45413,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4541,45411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4542,45416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4541,45415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4542,45420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4542,45419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4542,45424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4542,45422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4543,45428,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4543,45426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4543,45431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4543,45430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4544,45435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4543,45434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4544,45439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4544,45437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4544,45443,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4544,45441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4545,45446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4544,45445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4545,45450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4545,45449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4545,45454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4545,45452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4546,45458,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4546,45456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4546,45461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4546,45460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4547,45465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4546,45464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4547,45469,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4547,45467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4547,45473,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4547,45471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4548,45476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4547,45475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4548,45480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4548,45479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4548,45484,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4548,45482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4549,45488,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4549,45486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4549,45491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4549,45490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4550,45495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4549,45494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4550,45499,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4550,45497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4550,45503,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4550,45501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4551,45506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4550,45505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4551,45510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4551,45509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4551,45514,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4551,45512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4552,45518,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4552,45516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4552,45521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4552,45520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4553,45525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4552,45524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4553,45529,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4553,45527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4553,45533,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4553,45531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4553,45535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4554,45536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4554,45540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4554,45539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4554,45544,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4554,45542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4555,45548,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4555,45546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4555,45551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4555,45550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4556,45555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4555,45554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4556,45559,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4556,45557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4556,45563,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4556,45561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4557,45566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4556,45565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4557,45570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4557,45569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4557,45574,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4557,45572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4558,45578,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4558,45576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4558,45581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4558,45580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4559,45585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4558,45584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4559,45589,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4559,45587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4559,45593,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4559,45591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4560,45596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4559,45595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4560,45600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4560,45599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4560,45604,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4560,45602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4561,45608,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4561,45606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4561,45611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4561,45610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4562,45615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4561,45614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4562,45619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4562,45617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4562,45623,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4562,45621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4563,45626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4562,45625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4563,45630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4563,45629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4563,45634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4563,45632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4564,45638,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4564,45636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4564,45641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4564,45640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4565,45645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4564,45644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4565,45649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4565,45647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4565,45653,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4565,45651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4566,45656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4565,45655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4566,45660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4566,45659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4566,45664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4566,45662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4567,45668,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4567,45666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4567,45671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4567,45670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4568,45675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4567,45674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4568,45679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4568,45677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4568,45683,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4568,45681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4569,45686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4568,45685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4569,45690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4569,45689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4569,45694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4569,45692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4570,45698,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4570,45696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4570,45701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4570,45700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4571,45705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4570,45704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4571,45709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4571,45707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4571,45713,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4571,45711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4572,45716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4571,45715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4572,45720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4572,45719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4572,45724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4572,45722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4573,45728,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4573,45726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4573,45731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4573,45730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4574,45735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4573,45734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4574,45739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4574,45737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4574,45743,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4574,45741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4575,45746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4574,45745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4575,45749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4575,45750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4575,45754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4575,45752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4576,45758,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4576,45756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4576,45761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4576,45760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4577,45765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4576,45764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4577,45769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4577,45767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4577,45773,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4577,45771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4578,45776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4577,45775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4578,45780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4578,45779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4578,45784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4578,45782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4579,45788,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4579,45786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4579,45791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4579,45790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4580,45795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4579,45794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4580,45799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4580,45797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4580,45803,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4580,45801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4581,45806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4580,45805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4581,45810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4581,45809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4581,45814,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4581,45812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4582,45818,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4582,45816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4582,45821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4582,45820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4583,45825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4582,45824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4583,45829,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4583,45827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4583,45833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4583,45831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4584,45836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4583,45835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4584,45840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4584,45839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4584,45844,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4584,45842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4585,45848,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4585,45846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4585,45851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4585,45850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4586,45855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4585,45854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4586,45859,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4586,45857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4586,45863,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4586,45861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4587,45866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4586,45865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4587,45870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4587,45869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4587,45874,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4587,45872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4588,45878,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4588,45876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4588,45880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4588,45881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4589,45885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4588,45884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4589,45889,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4589,45887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4589,45893,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4589,45891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4590,45896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4589,45895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4590,45900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4590,45899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4590,45904,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4590,45902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4591,45908,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4591,45906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4591,45911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4591,45910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4592,45915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4591,45914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4592,45919,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4592,45917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4592,45923,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4592,45921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4593,45926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4592,45925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4593,45930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4593,45929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4593,45934,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4593,45932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4594,45938,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4594,45936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4594,45941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4594,45940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4595,45945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4594,45944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4595,45949,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4595,45947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4595,45953,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4595,45951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4596,45956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4595,45955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4596,45960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4596,45959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4596,45964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4596,45962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4597,45968,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4597,45966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4597,45971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4597,45970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4598,45975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4597,45974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4598,45979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4598,45977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4598,45983,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4598,45981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4599,45986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4598,45985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4599,45990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4599,45989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4599,45994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4599,45992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4600,45998,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4600,45996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4600,46001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4600,46000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4601,46005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4600,46004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4601,46009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4601,46007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4601,46013,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4601,46011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4602,46016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4601,46015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4602,46020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4602,46019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4602,46024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4602,46022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4603,46028,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4603,46026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4603,46031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4603,46030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4604,46035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4603,46034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4604,46039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4604,46037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4604,46043,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4604,46041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4605,46046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4604,46045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4605,46050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4605,46049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4605,46054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4605,46052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4606,46058,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4606,46056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4606,46061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4606,46060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4607,46065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4606,46064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4607,46069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4607,46067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4607,46073,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4607,46071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4608,46076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4607,46075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4608,46080,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4608,46079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4608,46084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4608,46082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4609,46088,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4609,46086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4609,46091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4609,46090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4609,46094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4610,46095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4610,46099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4610,46097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4610,46103,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4610,46101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4611,46106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4610,46105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4611,46110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4611,46109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4611,46114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4611,46112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4612,46118,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4612,46116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4612,46121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4612,46120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4613,46125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4612,46124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4613,46129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4613,46127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4613,46133,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4613,46131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4614,46136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4613,46135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4614,46140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4614,46139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4614,46144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4614,46142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4615,46148,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4615,46146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4615,46151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4615,46150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4616,46155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4615,46154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4616,46159,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4616,46157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4616,46163,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4616,46161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4617,46166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4616,46165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4617,46170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4617,46169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4617,46174,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4617,46172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4618,46178,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4618,46176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4618,46181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4618,46180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4619,46185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4618,46184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4619,46189,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4619,46187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4619,46193,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4619,46191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4620,46196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4619,46195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4620,46200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4620,46199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4620,46204,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4620,46202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4621,46208,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4621,46206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4621,46211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4621,46210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4622,46215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4621,46214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4622,46219,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4622,46217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4622,46223,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4622,46221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4622,46225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4623,46226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4623,46230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4623,46229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4623,46234,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4623,46232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4624,46238,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4624,46236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4624,46241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4624,46240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4625,46245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4624,46244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4625,46249,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4625,46247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4625,46253,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4625,46251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4626,46256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4625,46255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4626,46260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4626,46259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4626,46264,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4626,46262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4627,46268,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4627,46266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4627,46271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4627,46270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4628,46275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4627,46274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4628,46279,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4628,46277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4628,46283,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4628,46281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4629,46286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4628,46285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4629,46290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4629,46289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4629,46294,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4629,46292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4630,46298,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4630,46296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4630,46301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4630,46300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4631,46305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4630,46304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4631,46309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4631,46307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4631,46313,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4631,46311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4632,46316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4631,46315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4632,46320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4632,46319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4632,46324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4632,46322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4633,46328,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4633,46326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4633,46331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4633,46330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4634,46335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4633,46334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4634,46339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4634,46337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4634,46343,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4634,46341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4635,46346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4634,46345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4635,46350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4635,46349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4635,46354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4635,46352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4636,46358,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4636,46356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4636,46361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4636,46360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4637,46365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4636,46364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4637,46369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4637,46367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4637,46373,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4637,46371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4638,46376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4637,46375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4638,46380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4638,46379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4638,46384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4638,46382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4639,46388,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4639,46386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4639,46391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4639,46390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4640,46395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4639,46394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4640,46399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4640,46397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4640,46403,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4640,46401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4641,46406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4640,46405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4641,46410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4641,46409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4641,46414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4641,46412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4642,46418,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4642,46416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4642,46421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4642,46420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4642,46424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4643,46425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4643,46429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4643,46427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4643,46433,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4643,46431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4644,46436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4643,46435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4644,46440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4644,46439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4644,46444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4644,46442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4645,46448,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4645,46446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4645,46451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4645,46450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4646,46455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4645,46454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4646,46459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4646,46457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4646,46463,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4646,46461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4647,46466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4646,46465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4647,46470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4647,46469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4647,46474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4647,46472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4648,46478,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4648,46476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4648,46481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4648,46480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4649,46485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4648,46484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4649,46489,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4649,46487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4649,46493,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4649,46491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4650,46496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4649,46495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4650,46500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4650,46499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4650,46504,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4650,46502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4651,46508,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4651,46506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4651,46511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4651,46510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4652,46515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4651,46514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4652,46519,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4652,46517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4652,46523,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4652,46521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4653,46526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4652,46525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4653,46530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4653,46529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4653,46534,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4653,46532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4654,46538,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4654,46536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4654,46541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4654,46540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4655,46545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4654,46544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4655,46549,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4655,46547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4655,46553,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4655,46551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4655,46555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4656,46556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4656,46560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4656,46559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4656,46564,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4656,46562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4657,46568,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4657,46566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4657,46571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4657,46570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4658,46575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4657,46574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4658,46579,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4658,46577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4658,46583,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4658,46581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4659,46586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4658,46585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4659,46590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4659,46589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4659,46594,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4659,46592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4660,46598,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4660,46596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4660,46601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4660,46600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4661,46605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4660,46604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4661,46609,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4661,46607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4661,46613,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4661,46611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4662,46616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4661,46615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4662,46620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4662,46619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4662,46624,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4662,46622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4663,46628,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4663,46626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4663,46631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4663,46630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4664,46635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4663,46634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4664,46639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4664,46637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4664,46643,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4664,46641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4665,46646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4664,46645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4665,46650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4665,46649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4665,46654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4665,46652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4666,46658,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4666,46656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4666,46661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4666,46660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4667,46665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4666,46664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4667,46669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4667,46667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4667,46673,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4667,46671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4668,46676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4667,46675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4668,46680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4668,46679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4668,46684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4668,46682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4669,46688,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4669,46686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4669,46691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4669,46690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4670,46695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4669,46694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4670,46699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4670,46697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4670,46703,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4670,46701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4671,46706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4670,46705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4671,46710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4671,46709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4671,46714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4671,46712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4672,46718,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4672,46716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4672,46721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4672,46720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4673,46725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4672,46724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4673,46729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4673,46727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4673,46733,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4673,46731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4674,46736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4673,46735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4674,46740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4674,46739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4674,46744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4674,46742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4675,46748,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4675,46746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4675,46751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4675,46750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4675,46754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4676,46755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4676,46759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4676,46757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4676,46763,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4676,46761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4677,46766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4676,46765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4677,46770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4677,46769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4677,46774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4677,46772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4678,46778,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4678,46776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4678,46781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4678,46780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4679,46785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4678,46784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4679,46789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4679,46787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4679,46793,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4679,46791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4680,46796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4679,46795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4680,46800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4680,46799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4680,46804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4680,46802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4681,46808,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4681,46806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4681,46811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4681,46810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4682,46815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4681,46814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4682,46819,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4682,46817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4682,46823,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4682,46821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4683,46826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4682,46825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4683,46830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4683,46829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4683,46834,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4683,46832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4684,46838,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4684,46836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4684,46841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4684,46840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4685,46845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4684,46844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4685,46849,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4685,46847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4685,46853,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4685,46851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4686,46856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4685,46855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4686,46860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4686,46859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4686,46864,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4686,46862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4687,46868,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4687,46866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4687,46871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4687,46870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4688,46875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4687,46874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4688,46879,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4688,46877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4688,46883,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4688,46881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4688,46885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4689,46886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4689,46890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4689,46889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4689,46894,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4689,46892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4690,46898,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4690,46896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4690,46901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4690,46900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4691,46905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4690,46904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4691,46909,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4691,46907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4691,46913,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4691,46911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4692,46916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4691,46915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4692,46920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4692,46919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4692,46924,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4692,46922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4693,46928,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4693,46926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4693,46931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4693,46930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4694,46935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4693,46934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4694,46939,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4694,46937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4694,46943,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4694,46941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4695,46946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4694,46945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4695,46950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4695,46949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4695,46954,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4695,46952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4696,46958,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4696,46956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4696,46961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4696,46960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4697,46965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4696,46964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4697,46969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4697,46967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4697,46973,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4697,46971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4698,46976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4697,46975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4698,46980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4698,46979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4698,46984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4698,46982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4699,46988,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4699,46986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4699,46991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4699,46990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4700,46995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4699,46994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4700,46999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4700,46997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4700,47003,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4700,47001,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4701,47006,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4700,47005,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4701,47010,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4701,47009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4701,47014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4701,47012,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4702,47018,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4702,47016,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4702,47021,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4702,47020,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4703,47025,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4702,47024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4703,47029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4703,47027,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4703,47033,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4703,47031,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4704,47036,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4703,47035,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4704,47040,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4704,47039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4704,47044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4704,47042,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4705,47048,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4705,47046,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4705,47051,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4705,47050,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4706,47055,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4705,47054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4706,47059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4706,47057,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4706,47063,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4706,47061,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4707,47066,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4706,47065,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4707,47070,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4707,47069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4707,47074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4707,47072,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4708,47078,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4708,47076,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4708,47081,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4708,47080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4708,47084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4709,47085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4709,47089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4709,47087,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4709,47093,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4709,47091,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4710,47096,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4709,47095,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4710,47100,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4710,47099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4710,47104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4710,47102,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4711,47108,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4711,47106,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4711,47111,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4711,47110,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4712,47115,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4711,47114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4712,47119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4712,47117,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4712,47123,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4712,47121,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4713,47126,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4712,47125,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4713,47130,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4713,47129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4713,47134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4713,47132,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4714,47138,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4714,47136,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4714,47141,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4714,47140,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4715,47145,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4714,47144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4715,47149,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4715,47147,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4715,47153,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4715,47151,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4716,47156,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4715,47155,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4716,47160,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4716,47159,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4716,47164,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4716,47162,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4717,47168,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4717,47166,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4717,47171,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4717,47170,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4718,47175,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4717,47174,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4718,47179,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4718,47177,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4718,47183,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4718,47181,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4719,47186,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4718,47185,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4719,47190,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4719,47189,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4719,47194,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4719,47192,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4720,47198,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4720,47196,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4720,47201,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4720,47200,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4721,47205,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4720,47204,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4721,47209,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4721,47207,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4721,47213,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4721,47211,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4721,47215,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4722,47216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4722,47220,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4722,47219,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4722,47224,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4722,47222,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4723,47228,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4723,47226,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4723,47231,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4723,47230,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4724,47235,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4723,47234,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4724,47239,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4724,47237,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4724,47243,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4724,47241,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4725,47246,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4724,47245,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4725,47250,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4725,47249,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4725,47254,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4725,47252,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4726,47258,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4726,47256,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4726,47261,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4726,47260,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4727,47265,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4726,47264,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4727,47269,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4727,47267,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4727,47273,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4727,47271,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4728,47276,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4727,47275,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4728,47280,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4728,47279,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4728,47284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4728,47282,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4729,47288,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4729,47286,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4729,47291,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4729,47290,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4730,47295,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4729,47294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4730,47299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4730,47297,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4730,47303,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4730,47301,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4731,47306,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4730,47305,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4731,47310,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4731,47309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4731,47314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4731,47312,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4732,47318,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4732,47316,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4732,47321,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4732,47320,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4733,47325,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4732,47324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4733,47329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4733,47327,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4733,47333,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4733,47331,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4734,47336,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4733,47335,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4734,47340,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4734,47339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4734,47344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4734,47342,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4735,47348,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4735,47346,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4735,47351,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4735,47350,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4736,47355,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4735,47354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4736,47359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4736,47357,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4736,47363,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4736,47361,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4737,47366,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4736,47365,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4737,47370,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4737,47369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4737,47374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4737,47372,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4738,47378,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4738,47376,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4738,47381,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4738,47380,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4739,47385,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4738,47384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4739,47389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4739,47387,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4739,47393,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4739,47391,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4740,47396,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4739,47395,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4740,47400,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4740,47399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4740,47404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4740,47402,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4741,47408,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4741,47406,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4741,47411,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4741,47410,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4741,47414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4742,47415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4742,47419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4742,47417,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4742,47423,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4742,47421,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4743,47426,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4742,47425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4743,47430,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4743,47429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4743,47434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4743,47432,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4744,47438,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4744,47436,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4744,47441,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4744,47440,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4745,47445,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4744,47444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4745,47449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4745,47447,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4745,47453,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4745,47451,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4746,47456,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4745,47455,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4746,47460,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4746,47459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4746,47464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4746,47462,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4747,47468,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4747,47466,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4747,47471,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4747,47470,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4748,47475,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4747,47474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4748,47479,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4748,47477,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4748,47483,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4748,47481,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4749,47486,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4748,47485,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4749,47490,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4749,47489,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4749,47494,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4749,47492,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4750,47498,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4750,47496,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4750,47501,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4750,47500,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4751,47505,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4750,47504,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4751,47509,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4751,47507,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4751,47513,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4751,47511,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4752,47516,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4751,47515,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4752,47520,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4752,47519,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4752,47524,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4752,47522,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4753,47528,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4753,47526,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4753,47531,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4753,47530,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4754,47535,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4753,47534,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4754,47539,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4754,47537,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4754,47543,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4754,47541,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4754,47545,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4755,47546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4755,47550,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4755,47549,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4755,47554,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4755,47552,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4756,47558,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4756,47556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4756,47561,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4756,47560,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4757,47565,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4756,47564,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4757,47569,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4757,47567,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4757,47573,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4757,47571,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4758,47576,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4757,47575,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4758,47580,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4758,47579,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4758,47584,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4758,47582,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4759,47588,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4759,47586,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4759,47591,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4759,47590,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4760,47595,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4759,47594,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4760,47599,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4760,47597,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4760,47603,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4760,47601,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4761,47606,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4760,47605,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4761,47610,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4761,47609,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4761,47614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4761,47612,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4762,47618,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4762,47616,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4762,47621,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4762,47620,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4763,47625,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4762,47624,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4763,47629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4763,47627,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4763,47633,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4763,47631,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4764,47636,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4763,47635,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4764,47640,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4764,47639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4764,47644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4764,47642,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4765,47648,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4765,47646,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4765,47651,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4765,47650,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4766,47655,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4765,47654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4766,47659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4766,47657,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4766,47663,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4766,47661,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4767,47666,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4766,47665,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4767,47670,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4767,47669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4767,47674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4767,47672,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4768,47678,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4768,47676,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4768,47681,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4768,47680,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4769,47685,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4768,47684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4769,47689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4769,47687,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4769,47693,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4769,47691,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4770,47696,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4769,47695,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4770,47700,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4770,47699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4770,47704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4770,47702,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4771,47708,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4771,47706,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4771,47711,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4771,47710,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4772,47715,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4771,47714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4772,47719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4772,47717,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4772,47723,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4772,47721,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4773,47726,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4772,47725,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4773,47730,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4773,47729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4773,47734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4773,47732,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4774,47738,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4774,47736,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4774,47741,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4774,47740,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4775,47745,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4774,47744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4775,47749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4775,47747,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4775,47753,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4775,47751,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4776,47756,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4775,47755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4776,47760,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4776,47759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4776,47764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4776,47762,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4777,47768,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4777,47766,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4777,47771,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4777,47770,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4778,47775,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4777,47774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4778,47779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4778,47777,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4778,47783,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4778,47781,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4779,47786,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4778,47785,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4779,47790,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4779,47789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4779,47794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4779,47792,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4780,47798,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4780,47796,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4780,47801,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4780,47800,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4781,47805,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4780,47804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4781,47809,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4781,47807,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4781,47813,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4781,47811,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4782,47816,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4781,47815,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4782,47820,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4782,47819,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4782,47824,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4782,47822,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4783,47828,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4783,47826,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4783,47831,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4783,47830,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4784,47835,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4783,47834,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4784,47839,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4784,47837,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4784,47843,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4784,47841,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4785,47846,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4784,47845,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4785,47850,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4785,47849,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4785,47854,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4785,47852,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4786,47858,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4786,47856,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4786,47861,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4786,47860,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4787,47865,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4786,47864,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4787,47869,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4787,47867,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4787,47873,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4787,47871,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4787,47875,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4788,47876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4788,47880,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4788,47879,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4788,47884,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4788,47882,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4789,47888,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4789,47886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4789,47891,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4789,47890,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4790,47895,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4789,47894,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4790,47899,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4790,47897,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4790,47903,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4790,47901,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4791,47906,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4790,47905,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4791,47910,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4791,47909,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4791,47914,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4791,47912,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4792,47918,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4792,47916,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4792,47921,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4792,47920,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4793,47925,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4792,47924,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4793,47929,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4793,47927,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4793,47933,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4793,47931,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4794,47936,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4793,47935,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4794,47940,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4794,47939,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4794,47944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4794,47942,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4795,47948,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4795,47946,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4795,47951,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4795,47950,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4796,47955,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4795,47954,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4796,47959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4796,47957,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4796,47963,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4796,47961,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4797,47966,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4796,47965,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4797,47970,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4797,47969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4797,47974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4797,47972,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4798,47978,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4798,47976,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4798,47981,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4798,47980,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4799,47985,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4798,47984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4799,47989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4799,47987,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4799,47993,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4799,47991,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4800,47996,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4799,47995,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4800,48000,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4800,47999,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4800,48004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4800,48002,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4801,48008,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4801,48006,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4801,48011,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4801,48010,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4802,48015,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4801,48014,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4802,48019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4802,48017,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4802,48023,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4802,48021,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4803,48026,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4802,48025,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4803,48030,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4803,48029,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4803,48034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4803,48032,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4804,48038,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4804,48036,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4804,48041,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4804,48040,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4805,48045,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4804,48044,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4805,48049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4805,48047,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4805,48053,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4805,48051,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4806,48056,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4805,48055,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4806,48060,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4806,48059,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4806,48064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4806,48062,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4807,48068,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4807,48066,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4807,48071,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4807,48070,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4807,48074,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4808,48075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4808,48079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4808,48077,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4808,48083,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4808,48081,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4809,48086,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4808,48085,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4809,48090,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4809,48089,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4809,48094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4809,48092,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4810,48098,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4810,48096,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4810,48101,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4810,48100,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4811,48105,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4810,48104,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4811,48109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4811,48107,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4811,48113,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4811,48111,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4812,48116,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4811,48115,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4812,48120,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4812,48119,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4812,48124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4812,48122,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4813,48128,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4813,48126,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4813,48131,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4813,48130,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4814,48135,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4813,48134,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4814,48139,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4814,48137,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4814,48143,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4814,48141,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4815,48146,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4814,48145,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4815,48150,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4815,48149,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4815,48154,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4815,48152,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4816,48158,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4816,48156,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4816,48161,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4816,48160,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4817,48165,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4816,48164,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4817,48169,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4817,48167,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4817,48173,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4817,48171,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4818,48176,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4817,48175,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4818,48180,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4818,48179,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4818,48184,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4818,48182,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4819,48188,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4819,48186,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4819,48191,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4819,48190,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4820,48195,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4819,48194,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4820,48199,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4820,48197,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4820,48203,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4820,48201,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4820,48205,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4821,48206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4821,48210,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4821,48209,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4821,48214,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4821,48212,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4822,48218,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4822,48216,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4822,48221,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4822,48220,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4823,48225,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4822,48224,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4823,48229,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4823,48227,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4823,48233,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4823,48231,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4824,48236,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4823,48235,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4824,48240,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4824,48239,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4824,48244,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4824,48242,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4825,48248,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4825,48246,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4825,48251,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4825,48250,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4826,48255,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4825,48254,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4826,48259,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4826,48257,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4826,48263,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4826,48261,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4827,48266,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4826,48265,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4827,48270,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4827,48269,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4827,48274,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4827,48272,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4828,48278,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4828,48276,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4828,48281,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4828,48280,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4829,48285,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4828,48284,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4829,48289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4829,48287,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4829,48293,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4829,48291,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4830,48296,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4829,48295,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4830,48300,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4830,48299,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4830,48304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4830,48302,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4831,48308,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4831,48306,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4831,48311,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4831,48310,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4832,48315,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4831,48314,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4832,48319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4832,48317,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4832,48323,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4832,48321,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4833,48326,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4832,48325,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4833,48330,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4833,48329,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4833,48334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4833,48332,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4834,48338,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4834,48336,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4834,48341,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4834,48340,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4835,48345,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4834,48344,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4835,48349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4835,48347,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4835,48353,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4835,48351,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4836,48356,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4835,48355,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4836,48360,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4836,48359,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4836,48364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4836,48362,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4837,48368,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4837,48366,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4837,48371,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4837,48370,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4838,48375,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4837,48374,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4838,48379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4838,48377,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4838,48383,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4838,48381,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4839,48386,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4838,48385,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4839,48390,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4839,48389,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4839,48394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4839,48392,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4840,48398,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4840,48396,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4840,48401,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4840,48400,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4840,48404,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4841,48405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4841,48409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4841,48407,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4841,48413,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4841,48411,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4842,48416,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4841,48415,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4842,48420,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4842,48419,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4842,48424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4842,48422,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4843,48428,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4843,48426,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4843,48431,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4843,48430,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4844,48435,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4843,48434,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4844,48439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4844,48437,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4844,48443,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4844,48441,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4845,48446,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4844,48445,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4845,48450,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4845,48449,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4845,48454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4845,48452,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4846,48458,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4846,48456,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4846,48461,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4846,48460,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4847,48465,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4846,48464,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4847,48469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4847,48467,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4847,48473,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4847,48471,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4848,48476,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4847,48475,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4848,48480,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4848,48479,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4848,48484,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4848,48482,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4849,48488,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4849,48486,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4849,48491,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4849,48490,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4850,48495,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4849,48494,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4850,48499,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4850,48497,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4850,48503,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4850,48501,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4851,48506,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4850,48505,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4851,48510,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4851,48509,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4851,48514,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4851,48512,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4852,48518,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4852,48516,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4852,48521,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4852,48520,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4853,48525,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4852,48524,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4853,48529,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4853,48527,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4853,48533,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4853,48531,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4854,48536,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4853,48535,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4854,48540,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4854,48539,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4854,48544,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4854,48542,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4855,48548,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4855,48546,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4855,48551,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4855,48550,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4856,48555,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4855,48554,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4856,48559,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4856,48557,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4856,48563,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4856,48561,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4857,48566,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4856,48565,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4857,48570,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4857,48569,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4857,48574,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4857,48572,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4858,48578,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4858,48576,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4858,48581,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4858,48580,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4859,48585,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4858,48584,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4859,48589,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4859,48587,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4859,48593,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4859,48591,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4860,48596,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4859,48595,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4860,48600,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4860,48599,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4860,48604,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4860,48602,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4861,48608,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4861,48606,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4861,48611,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4861,48610,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4862,48615,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4861,48614,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4862,48619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4862,48617,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4862,48623,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4862,48621,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4863,48626,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4862,48625,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4863,48630,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4863,48629,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4863,48634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4863,48632,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4864,48638,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4864,48636,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4864,48641,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4864,48640,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4865,48645,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4864,48644,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4865,48649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4865,48647,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4865,48653,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4865,48651,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4866,48656,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4865,48655,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4866,48660,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4866,48659,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4866,48664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4866,48662,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4867,48668,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4867,48666,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4867,48671,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4867,48670,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4868,48675,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4867,48674,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4868,48679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4868,48677,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4868,48683,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4868,48681,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4869,48686,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4868,48685,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4869,48690,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4869,48689,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4869,48694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4869,48692,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4870,48698,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4870,48696,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4870,48701,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4870,48700,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4871,48705,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4870,48704,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4871,48709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4871,48707,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4871,48713,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4871,48711,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4872,48716,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4871,48715,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4872,48720,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4872,48719,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4872,48724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4872,48722,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4873,48728,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4873,48726,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4873,48731,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4873,48730,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4874,48735,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4873,48734,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4874,48739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4874,48737,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4874,48743,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4874,48741,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4875,48746,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4874,48745,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4875,48749,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4875,48750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4875,48754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4875,48752,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4876,48758,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4876,48756,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4876,48761,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4876,48760,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4877,48765,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4876,48764,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4877,48769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4877,48767,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4877,48773,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4877,48771,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4878,48776,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4877,48775,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4878,48780,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4878,48779,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4878,48784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4878,48782,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4879,48788,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4879,48786,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4879,48791,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4879,48790,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4880,48795,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4879,48794,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4880,48799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4880,48797,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4880,48803,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4880,48801,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4881,48806,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4880,48805,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4881,48810,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4881,48809,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4881,48814,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4881,48812,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4882,48818,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4882,48816,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4882,48821,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4882,48820,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4883,48825,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4882,48824,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4883,48829,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4883,48827,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4883,48833,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4883,48831,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4884,48836,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4883,48835,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4884,48840,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4884,48839,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4884,48844,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4884,48842,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4885,48848,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4885,48846,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4885,48851,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4885,48850,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4886,48855,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4885,48854,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4886,48859,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4886,48857,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4886,48863,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4886,48861,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4887,48866,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4886,48865,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4887,48870,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4887,48869,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4887,48874,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4887,48872,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4888,48878,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4888,48876,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4888,48880,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4888,48881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4889,48885,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4888,48884,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4889,48889,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4889,48887,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4889,48893,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4889,48891,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4890,48896,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4889,48895,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4890,48900,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4890,48899,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4890,48904,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4890,48902,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4891,48908,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4891,48906,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4891,48911,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4891,48910,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4892,48915,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4891,48914,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4892,48919,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4892,48917,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4892,48923,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4892,48921,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4893,48926,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4892,48925,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4893,48930,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4893,48929,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4893,48934,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4893,48932,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4894,48938,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4894,48936,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4894,48941,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4894,48940,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4895,48945,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4894,48944,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4895,48949,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4895,48947,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4895,48953,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4895,48951,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4896,48956,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4895,48955,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4896,48960,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4896,48959,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4896,48964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4896,48962,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4897,48968,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4897,48966,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4897,48971,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4897,48970,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4898,48975,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4897,48974,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4898,48979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4898,48977,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4898,48983,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4898,48981,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4899,48986,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4898,48985,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4899,48990,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4899,48989,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4899,48994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4899,48992,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4900,48998,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4900,48996,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4900,49001,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4900,49000,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4901,49005,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4900,49004,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4901,49009,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4901,49007,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4901,49013,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4901,49011,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4902,49016,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4901,49015,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4902,49020,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4902,49019,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4902,49024,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4902,49022,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4903,49028,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4903,49026,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4903,49031,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4903,49030,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4904,49035,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4903,49034,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4904,49039,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4904,49037,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4904,49043,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4904,49041,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4905,49046,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4904,49045,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4905,49050,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4905,49049,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4905,49054,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4905,49052,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4906,49058,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4906,49056,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4906,49061,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4906,49060,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4907,49065,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4906,49064,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4907,49069,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4907,49067,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4907,49073,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4907,49071,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4908,49076,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4907,49075,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4908,49079,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4908,49080,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4908,49084,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4908,49082,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4909,49088,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4909,49086,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4909,49091,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4909,49090,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4910,49095,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4909,49094,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4910,49099,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4910,49097,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4910,49103,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4910,49101,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4911,49106,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4910,49105,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4911,49110,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4911,49109,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4911,49114,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4911,49112,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4912,49118,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4912,49116,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4912,49121,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4912,49120,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4913,49125,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4912,49124,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4913,49129,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4913,49127,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4913,49133,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4913,49131,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4914,49136,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4913,49135,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4914,49140,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4914,49139,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4914,49144,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4914,49142,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4915,49148,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4915,49146,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4915,49151,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4915,49150,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4916,49155,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4915,49154,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4916,49159,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4916,49157,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4916,49163,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4916,49161,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4917,49166,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4916,49165,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4917,49170,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4917,49169,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4917,49174,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4917,49172,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4918,49178,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4918,49176,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4918,49181,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4918,49180,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4919,49185,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4918,49184,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4919,49189,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4919,49187,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4919,49193,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4919,49191,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4920,49196,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4919,49195,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4920,49200,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4920,49199,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4920,49204,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4920,49202,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4921,49208,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4921,49206,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4921,49211,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4921,49210,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4922,49215,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4921,49214,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4922,49219,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4922,49217,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4922,49223,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4922,49221,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4923,49226,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4922,49225,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4923,49230,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4923,49229,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4923,49234,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4923,49232,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4924,49238,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4924,49236,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4924,49241,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4924,49240,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4925,49245,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4924,49244,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4925,49249,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4925,49247,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4925,49253,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4925,49251,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4926,49256,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4925,49255,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4926,49260,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4926,49259,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4926,49264,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4926,49262,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4927,49268,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4927,49266,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4927,49271,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4927,49270,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4928,49275,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4927,49274,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4928,49279,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4928,49277,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4928,49283,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4928,49281,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4929,49286,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4928,49285,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4929,49290,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4929,49289,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4929,49294,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4929,49292,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4930,49298,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4930,49296,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4930,49301,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4930,49300,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4931,49305,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4930,49304,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4931,49309,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4931,49307,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4931,49313,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4931,49311,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4932,49316,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4931,49315,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4932,49320,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4932,49319,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4932,49324,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4932,49322,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4933,49328,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4933,49326,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4933,49331,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4933,49330,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4934,49335,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4933,49334,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4934,49339,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4934,49337,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4934,49343,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4934,49341,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4935,49346,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4934,49345,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4935,49350,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4935,49349,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4935,49354,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4935,49352,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4936,49358,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4936,49356,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4936,49361,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4936,49360,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4937,49365,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4936,49364,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4937,49369,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4937,49367,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4937,49373,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4937,49371,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4938,49376,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4937,49375,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4938,49380,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4938,49379,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4938,49384,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4938,49382,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4939,49388,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4939,49386,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4939,49391,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4939,49390,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4940,49395,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4939,49394,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4940,49399,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4940,49397,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4940,49403,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4940,49401,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4941,49406,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4940,49405,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4941,49410,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4941,49409,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4941,49414,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4941,49412,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4942,49418,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4942,49416,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4942,49421,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4942,49420,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4942,49424,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4943,49425,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4943,49429,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4943,49427,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4943,49433,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4943,49431,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4944,49436,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4943,49435,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4944,49440,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4944,49439,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4944,49444,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4944,49442,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4945,49448,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4945,49446,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4945,49451,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4945,49450,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4946,49455,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4945,49454,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4946,49459,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4946,49457,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4946,49463,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4946,49461,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4947,49466,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4946,49465,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4947,49470,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4947,49469,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4947,49474,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4947,49472,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4948,49478,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4948,49476,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4948,49481,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4948,49480,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4949,49485,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4948,49484,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4949,49489,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4949,49487,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4949,49493,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4949,49491,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4950,49496,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4949,49495,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4950,49500,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4950,49499,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4950,49504,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4950,49502,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4951,49508,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4951,49506,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4951,49511,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4951,49510,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4952,49515,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4951,49514,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4952,49519,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4952,49517,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4952,49523,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4952,49521,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4953,49526,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4952,49525,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4953,49530,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4953,49529,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4953,49534,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4953,49532,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4954,49538,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4954,49536,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4954,49541,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4954,49540,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4955,49545,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4954,49544,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4955,49549,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4955,49547,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4955,49553,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4955,49551,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4955,49555,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4956,49556,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4956,49560,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4956,49559,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4956,49564,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4956,49562,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4957,49568,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4957,49566,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4957,49571,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4957,49570,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4958,49575,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4957,49574,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4958,49579,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4958,49577,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4958,49583,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4958,49581,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4959,49586,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4958,49585,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4959,49590,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4959,49589,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4959,49594,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4959,49592,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4960,49598,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4960,49596,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4960,49601,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4960,49600,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4961,49605,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4960,49604,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4961,49609,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4961,49607,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4961,49613,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4961,49611,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4962,49616,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4961,49615,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4962,49620,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4962,49619,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4962,49624,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4962,49622,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4963,49628,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4963,49626,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4963,49631,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4963,49630,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4964,49635,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4963,49634,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4964,49639,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4964,49637,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4964,49643,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4964,49641,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4965,49646,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4964,49645,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4965,49650,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4965,49649,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4965,49654,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4965,49652,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4966,49658,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4966,49656,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4966,49661,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4966,49660,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4967,49665,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4966,49664,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4967,49669,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4967,49667,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4967,49673,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4967,49671,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4968,49676,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4967,49675,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4968,49680,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4968,49679,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4968,49684,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4968,49682,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4969,49688,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4969,49686,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4969,49691,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4969,49690,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4970,49695,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4969,49694,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4970,49699,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4970,49697,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4970,49703,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4970,49701,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4971,49706,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4970,49705,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4971,49710,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4971,49709,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4971,49714,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4971,49712,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4972,49718,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4972,49716,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4972,49721,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4972,49720,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4973,49725,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4972,49724,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4973,49729,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4973,49727,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4973,49733,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4973,49731,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4974,49736,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4973,49735,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4974,49740,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4974,49739,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4974,49744,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4974,49742,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4975,49748,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4975,49746,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4975,49751,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4975,49750,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4975,49754,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4976,49755,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4976,49759,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4976,49757,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4976,49763,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4976,49761,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4977,49766,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4976,49765,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4977,49770,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4977,49769,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4977,49774,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4977,49772,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4978,49778,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4978,49776,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4978,49781,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4978,49780,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4979,49785,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4978,49784,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4979,49789,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4979,49787,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4979,49793,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4979,49791,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4980,49796,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4979,49795,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4980,49800,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4980,49799,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4980,49804,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4980,49802,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4981,49808,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4981,49806,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4981,49811,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4981,49810,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4982,49815,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4981,49814,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4982,49819,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4982,49817,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4982,49823,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4982,49821,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4983,49826,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4982,49825,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4983,49830,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4983,49829,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4983,49834,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4983,49832,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4984,49838,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4984,49836,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4984,49841,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4984,49840,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4985,49845,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4984,49844,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4985,49849,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4985,49847,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4985,49853,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4985,49851,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4986,49856,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4985,49855,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4986,49860,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4986,49859,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4986,49864,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4986,49862,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4987,49868,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4987,49866,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4987,49871,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4987,49870,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4988,49875,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4987,49874,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4988,49879,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4988,49877,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4988,49883,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4988,49881,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4988,49885,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4989,49886,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4989,49890,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4989,49889,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4989,49894,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4989,49892,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4990,49898,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4990,49896,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4990,49901,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4990,49900,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4991,49905,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4990,49904,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4991,49909,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4991,49907,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4991,49913,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4991,49911,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4992,49916,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4991,49915,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4992,49920,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4992,49919,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4992,49924,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4992,49922,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4993,49928,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4993,49926,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4993,49931,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4993,49930,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4994,49935,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4993,49934,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4994,49939,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4994,49937,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4994,49943,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4994,49941,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4995,49946,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4994,49945,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4995,49950,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4995,49949,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4995,49954,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4995,49952,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4996,49958,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4996,49956,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4996,49961,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4996,49960,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4997,49965,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4996,49964,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4997,49969,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4997,49967,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4997,49973,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4997,49971,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4998,49976,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4997,49975,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4998,49980,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4998,49979,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4998,49984,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4998,49982,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4999,49988,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4999,49986,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4999,49991,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4999,49990,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,49995,0.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=4999,49994,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. -../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,49999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,49997,0.. ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. Segment buffer empty!!!!!!!!!!!!!!!!!!!!!../grbl/stepper.c:st_go_idle:295 ../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50000,0.. +../grbl/gcode.c:gc_execute_line:72:G2X40Y220R20 +1 +letter=G +value=2.000000 +int_value=2 +mantissa=0 +axis_command=2 +here!! +here 2!! +here 3!! +../grbl/gcode.c:gc_execute_line:349: +1 +letter=X +value=40.000000 +int_value=40 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +1 +letter=Y +value=220.000000 +int_value=220 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +1 +letter=R +value=20.000000 +int_value=20 +mantissa=0 +../grbl/gcode.c:gc_execute_line:349: +../grbl/gcode.c:gc_execute_line:384:axis_words=3 +../grbl/gcode.c:gc_execute_line:385:axis_command=2 +../grbl/gcode.c:gc_execute_line:390:axis_command=2 +../grbl/gcode.c:gc_execute_line:396 +../grbl/gcode.c:gc_execute_line:411:gc_parser_flags=0 +../grbl/gcode.c:gc_execute_line:417:gc_block.modal.feed_rate=0 +../grbl/gcode.c:gc_execute_line:444:gc_state.feed_rate=20.000000 +../grbl/motion_control.c:mc_arc:91 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_update_plan_block_parameters:658 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:st_wake_up:264 +../grbl/stepper.c:ecmc_start_dummy_thread:245 +ok + + Thread created successfully +../grbl/stepper.c:ecmc_dummy_thread:228 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50004,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50007,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50011,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50015,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50019,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50022,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50026,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50030,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5000,50034,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50037,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50041,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50045,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50049,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50052,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50056,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50060,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50064,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50067,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50071,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50075,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50079,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50082,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50086,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50090,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50094,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50097,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50101,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5001,50105,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50109,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50112,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50116,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50120,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50124,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50127,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50131,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50135,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50139,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50142,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50146,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50150,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5002,50154,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5003,50157,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5003,50161,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5003,50165,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5003,50169,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5003,50172,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5003,50176,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5004,50180,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5004,50184,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5004,50187,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5004,50191,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5004,50195,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5004,50199,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50202,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50206,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50210,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50214,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50217,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50221,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5005,50225,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5006,50229,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5006,50232,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5006,50236,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5006,50240,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5006,50244,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5006,50247,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5007,50251,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5007,50255,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5007,50259,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5007,50262,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5007,50266,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5007,50270,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5008,50274,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5008,50277,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5008,50281,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5008,50285,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5008,50289,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5009,50292,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5009,50296,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5009,50300,0.. + +raspberrypi-19924 > ../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5009,50304,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5010,50307,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5010,50311,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5010,50315,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5010,50319,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5011,50322,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5011,50326,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5011,50330,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5011,50334,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5012,50337,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5012,50341,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5012,50345,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5012,50349,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5013,50352,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5013,50356,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5013,50360,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5014,50364,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5014,50367,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5014,50371,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5014,50375,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5015,50379,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5015,50382,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5015,50386,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5015,50390,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5016,50394,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5016,50397,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5016,50401,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5016,50405,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5017,50409,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5017,50412,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5017,50416,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5017,50420,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5018,50424,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5018,50427,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5018,50431,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5019,50435,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5019,50439,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5020,50442,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5020,50446,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5020,50450,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5021,50454,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5021,50457,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5022,50461,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5022,50465,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5022,50469,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5023,50472,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5023,50476,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5023,50480,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5024,50484,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5024,50487,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5025,50491,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5025,50495,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5025,50499,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5026,50502,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5026,50506,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5027,50510,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5027,50514,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5027,50517,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5028,50521,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5028,50525,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5029,50529,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5029,50532,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5029,50536,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5030,50540,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5030,50544,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5031,50547,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5031,50551,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5031,50555,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5032,50559,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5032,50562,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5033,50566,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5033,50570,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5033,50574,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5034,50577,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5034,50581,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5035,50585,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5035,50589,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5036,50592,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5036,50596,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5037,50600,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5037,50604,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5038,50607,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5038,50611,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5039,50615,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5039,50619,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5040,50622,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5040,50626,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5041,50630,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5041,50634,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5042,50637,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5042,50641,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5043,50645,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5043,50649,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5043,50652,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5044,50656,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5044,50660,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5045,50664,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5045,50667,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5046,50671,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5046,50675,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5047,50679,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5047,50682,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5048,50686,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5048,50690,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5049,50694,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5049,50697,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5050,50701,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5050,50705,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5051,50709,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5051,50712,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5052,50716,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5052,50720,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5053,50724,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5053,50727,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5054,50731,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5055,50735,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5055,50739,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5056,50742,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5056,50746,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5057,50750,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5058,50754,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5058,50757,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5059,50761,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5059,50765,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5060,50769,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5060,50772,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5061,50776,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5062,50780,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5062,50784,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5063,50787,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5063,50791,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5064,50795,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5065,50799,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5065,50802,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5066,50806,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5066,50810,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5067,50814,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5067,50817,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5068,50821,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5069,50825,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5069,50829,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5070,50832,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5070,50836,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5071,50840,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5072,50844,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5072,50847,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5073,50851,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5073,50855,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5074,50859,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5075,50862,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5076,50866,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5076,50870,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5077,50874,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5078,50877,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5078,50881,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5079,50885,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5080,50889,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5081,50892,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5081,50896,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5082,50900,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5083,50904,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5084,50907,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5084,50911,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5085,50915,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5086,50919,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5086,50922,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5087,50926,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5088,50930,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5089,50934,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5089,50937,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5090,50941,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5091,50945,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5091,50949,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5092,50952,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5093,50956,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5094,50960,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5094,50964,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5095,50967,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5096,50971,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5097,50975,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5097,50979,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5098,50982,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5099,50986,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5099,50990,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5100,50994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5101,50997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5102,51001,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5103,51005,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5103,51009,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5104,51012,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5105,51016,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5106,51020,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5107,51024,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5107,51027,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5108,51031,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5109,51035,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5110,51039,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5111,51042,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5111,51046,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5112,51050,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5113,51054,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5114,51057,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5115,51061,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5116,51065,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5116,51069,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5117,51072,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5118,51076,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5119,51080,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5120,51084,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5120,51087,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5121,51091,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5122,51095,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5123,51099,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5124,51102,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5124,51106,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5125,51110,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5126,51114,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5127,51117,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5128,51121,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5128,51125,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5129,51129,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5130,51132,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5131,51136,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5132,51140,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5133,51144,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5134,51147,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5135,51151,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5136,51155,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5137,51159,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5137,51162,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5138,51166,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5139,51170,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5140,51174,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5141,51177,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5142,51181,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5143,51185,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5144,51189,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5145,51192,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5146,51196,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5147,51200,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5148,51204,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5148,51207,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5149,51211,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5150,51215,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5151,51219,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5152,51222,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5153,51226,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5154,51230,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5155,51234,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5156,51237,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5157,51241,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5158,51245,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5159,51249,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5159,51252,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5160,51256,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5161,51260,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5162,51264,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5163,51267,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5164,51271,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5165,51275,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5166,51279,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5167,51282,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5168,51286,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5169,51290,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5170,51294,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5171,51297,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5173,51301,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5174,51305,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5175,51309,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5176,51312,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5177,51316,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5178,51320,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5179,51324,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5180,51327,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5181,51331,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5182,51335,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5183,51339,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5184,51342,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5185,51346,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5186,51350,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5187,51354,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5188,51357,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5190,51361,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5191,51365,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5192,51369,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5193,51372,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5194,51376,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5195,51380,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5196,51384,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5197,51387,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5198,51391,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5199,51395,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5200,51399,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5201,51402,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5202,51406,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5203,51410,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5204,51414,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5206,51417,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5207,51421,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5208,51425,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5209,51429,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5210,51432,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5211,51436,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5213,51440,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5214,51444,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5215,51447,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5216,51451,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5217,51455,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5218,51459,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5220,51462,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5221,51466,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5222,51470,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5223,51474,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5224,51477,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5225,51481,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5226,51485,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5228,51489,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5229,51492,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5230,51496,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5231,51500,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5232,51504,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5233,51507,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5235,51511,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5236,51515,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5237,51519,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5238,51522,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5239,51526,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5240,51530,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5242,51534,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5243,51537,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5244,51541,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5245,51545,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5246,51549,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5248,51552,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5249,51556,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5250,51560,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5251,51564,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5253,51567,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5254,51571,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5255,51575,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5256,51579,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5258,51582,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5259,51586,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5260,51590,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5262,51594,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5263,51597,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5264,51601,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5265,51605,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5267,51609,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5268,51612,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5269,51616,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5271,51620,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5272,51624,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5273,51627,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5274,51631,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5276,51635,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5277,51639,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5278,51642,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5279,51646,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5281,51650,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5282,51654,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5283,51657,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5285,51661,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5286,51665,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5287,51669,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5288,51672,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5290,51676,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5291,51680,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5292,51684,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5294,51687,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5295,51691,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5297,51695,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5298,51699,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5299,51702,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5301,51706,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5302,51710,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5304,51714,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5305,51717,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5306,51721,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5308,51725,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5309,51729,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5311,51732,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5312,51736,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5313,51740,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5315,51744,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5316,51747,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5318,51751,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5319,51755,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5320,51759,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5322,51762,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5323,51766,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5325,51770,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5326,51774,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5327,51777,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5329,51781,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5330,51785,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5332,51789,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5333,51792,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5334,51796,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5336,51800,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5337,51804,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5339,51807,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5340,51811,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5341,51815,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5343,51819,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5344,51822,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5346,51826,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5347,51830,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5349,51834,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5350,51837,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5352,51841,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5353,51845,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5355,51849,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5356,51852,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5358,51856,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5359,51860,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5361,51864,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5362,51867,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5364,51871,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5365,51875,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5367,51879,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5369,51882,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5370,51886,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5372,51890,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5373,51894,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5375,51897,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5376,51901,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5378,51905,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5379,51909,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5381,51912,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5382,51916,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5384,51920,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5385,51924,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5387,51927,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5388,51931,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5390,51935,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5391,51939,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5393,51942,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5394,51946,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5396,51950,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5397,51954,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5399,51957,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5401,51961,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5402,51965,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5404,51969,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5406,51972,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5407,51976,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5409,51980,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5411,51984,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5412,51987,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5414,51991,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5416,51995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5417,51999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5419,52002,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5421,52006,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5422,52010,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5424,52014,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5426,52017,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5427,52021,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5429,52025,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5431,52029,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5432,52032,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5434,52036,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5436,52040,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5437,52044,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5439,52047,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5441,52051,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5442,52055,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5444,52059,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5446,52062,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5447,52066,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5449,52070,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5451,52074,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5452,52077,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5454,52081,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5456,52085,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5458,52089,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5459,52092,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5461,52096,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5463,52100,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5465,52104,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5466,52107,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5468,52111,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5470,52115,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5472,52119,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5474,52122,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5475,52126,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5477,52130,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5479,52134,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5481,52137,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5482,52141,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5484,52145,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5486,52149,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5488,52152,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5489,52156,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5491,52160,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5493,52164,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5495,52167,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5497,52171,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5498,52175,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5500,52179,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5502,52182,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5504,52186,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5505,52190,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5507,52194,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5509,52197,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5511,52201,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5513,52205,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5514,52209,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5516,52212,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5518,52216,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5520,52220,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5522,52224,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5524,52227,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5526,52231,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5528,52235,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5530,52239,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5532,52242,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5534,52246,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5536,52250,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5537,52254,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5539,52257,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5541,52261,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5543,52265,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5545,52269,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5547,52272,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5549,52276,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5551,52280,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5553,52284,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5555,52287,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5557,52291,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5559,52295,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5560,52299,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5562,52302,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5564,52306,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5566,52310,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5568,52314,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5570,52317,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5572,52321,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5574,52325,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5576,52329,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5578,52332,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5580,52336,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5582,52340,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5584,52344,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5586,52347,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5588,52351,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5590,52355,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5592,52359,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5594,52362,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5596,52366,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5598,52370,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5600,52374,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5602,52377,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5604,52381,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5606,52385,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5608,52389,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5610,52392,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5612,52396,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5614,52400,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5616,52404,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5618,52407,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5620,52411,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5622,52415,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5624,52419,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5626,52422,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5628,52426,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5630,52430,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5632,52434,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5634,52437,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5636,52441,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5638,52445,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5640,52449,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5642,52452,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5645,52456,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5647,52460,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5649,52464,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5651,52467,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5653,52471,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5655,52475,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5658,52479,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5660,52482,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5662,52486,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5664,52490,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5666,52494,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5669,52497,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5671,52501,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5673,52505,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5675,52509,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5677,52512,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5680,52516,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5682,52520,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5684,52524,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5686,52527,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5688,52531,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5690,52535,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5693,52539,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5695,52542,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5697,52546,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5699,52550,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5701,52554,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5704,52557,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5706,52561,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5708,52565,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5710,52569,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5712,52572,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5715,52576,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5717,52580,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5719,52584,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5721,52587,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5724,52591,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5726,52595,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5729,52599,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5731,52602,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5733,52606,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5736,52610,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5738,52614,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5740,52617,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5743,52621,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5745,52625,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5747,52629,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5750,52632,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5752,52636,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5754,52640,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5757,52644,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5759,52647,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5761,52651,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5764,52655,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5766,52659,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5769,52662,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5771,52666,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5773,52670,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5776,52674,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5778,52677,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5780,52681,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5783,52685,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5785,52689,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5787,52692,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5790,52696,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5792,52700,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5794,52704,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5797,52707,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5799,52711,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5802,52715,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5804,52719,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5807,52722,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5809,52726,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5812,52730,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5814,52734,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5817,52737,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5819,52741,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5822,52745,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5824,52749,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5827,52752,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5829,52756,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5832,52760,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5834,52764,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5837,52767,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5839,52771,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5842,52775,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5844,52779,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5847,52782,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5849,52786,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5852,52790,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5854,52794,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5857,52797,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5859,52801,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5862,52805,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5864,52809,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5867,52812,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5869,52816,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5872,52820,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5874,52824,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5877,52827,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5879,52831,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5882,52835,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5885,52839,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5887,52842,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5890,52846,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5893,52850,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5895,52854,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5898,52857,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5901,52861,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5903,52865,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5906,52869,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5908,52872,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5911,52876,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5914,52880,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5916,52884,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5919,52887,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5922,52891,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5924,52895,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5927,52899,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5929,52902,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5932,52906,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5935,52910,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5937,52914,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5940,52917,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5943,52921,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5945,52925,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5948,52929,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5950,52932,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5953,52936,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5956,52940,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5959,52944,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5961,52947,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5964,52951,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5967,52955,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5970,52959,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5973,52962,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5975,52966,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5978,52970,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5981,52974,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5984,52977,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5987,52981,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5989,52985,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5992,52989,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5995,52992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=5998,52996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6000,53000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6003,53004,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6006,53007,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6009,53011,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6012,53015,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6014,53019,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6017,53022,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6020,53026,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6023,53030,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6026,53034,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6028,53037,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6031,53041,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6034,53045,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6037,53049,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6040,53052,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6043,53056,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6046,53060,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6049,53064,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6052,53067,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6055,53071,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6057,53075,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6060,53079,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6063,53082,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6066,53086,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6069,53090,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6072,53094,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6075,53097,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6078,53101,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6081,53105,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6084,53109,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6087,53112,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6090,53116,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6093,53120,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6096,53124,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6099,53127,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6102,53131,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6105,53135,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6108,53139,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6111,53142,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6114,53146,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6117,53150,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6120,53154,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6123,53157,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6126,53161,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6129,53165,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6132,53169,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6135,53172,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6138,53176,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6142,53180,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6145,53184,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6148,53187,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6151,53191,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6154,53195,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6157,53199,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6161,53202,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6164,53206,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6167,53210,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6170,53214,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6173,53217,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6176,53221,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6180,53225,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6183,53229,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6186,53232,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6189,53236,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6192,53240,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6195,53244,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6199,53247,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6202,53251,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6205,53255,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6208,53259,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6211,53262,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6214,53266,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6218,53270,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6221,53274,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6224,53277,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6227,53281,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6231,53285,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6234,53289,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6237,53292,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6241,53296,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6244,53300,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6247,53304,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6251,53307,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6254,53311,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6257,53315,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6261,53319,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6264,53322,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6267,53326,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6271,53330,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6274,53334,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6277,53337,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6281,53341,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6284,53345,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6287,53349,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6291,53352,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6294,53356,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6297,53360,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6301,53364,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6304,53367,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6307,53371,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6311,53375,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6314,53379,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6317,53382,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6321,53386,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6324,53390,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6328,53394,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6332,53397,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6335,53401,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6339,53405,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6342,53409,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6346,53412,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6349,53416,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6353,53420,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6356,53424,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6360,53427,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6363,53431,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6367,53435,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6370,53439,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6374,53442,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6377,53446,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6381,53450,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6385,53454,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6388,53457,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6392,53461,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6395,53465,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6399,53469,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6402,53472,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6406,53476,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6409,53480,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6413,53484,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6416,53487,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6420,53491,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6424,53495,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6428,53499,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6431,53502,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6435,53506,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6439,53510,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6443,53514,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6446,53517,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6450,53521,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6454,53525,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6458,53529,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6461,53532,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6465,53536,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6469,53540,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6473,53544,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6476,53547,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6480,53551,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6484,53555,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6488,53559,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6491,53562,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6495,53566,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6499,53570,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6503,53574,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6506,53577,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6510,53581,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6514,53585,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6518,53589,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6521,53592,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6525,53596,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6529,53599,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6533,53603,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6536,53606,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6540,53610,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6544,53613,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6548,53617,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6551,53620,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6555,53624,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6559,53627,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6563,53631,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6566,53635,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6570,53638,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6574,53642,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6578,53645,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6581,53649,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6585,53652,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6589,53656,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6593,53659,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6596,53663,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6600,53666,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6604,53670,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6608,53673,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6611,53677,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6615,53680,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6619,53684,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6623,53687,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6626,53691,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6630,53694,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6634,53697,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6638,53701,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6641,53704,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6645,53707,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6649,53711,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6653,53714,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6656,53717,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6660,53721,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6664,53724,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6668,53727,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6671,53731,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6675,53734,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6679,53737,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6683,53741,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6686,53744,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6690,53747,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6694,53751,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6698,53754,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6701,53757,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6705,53761,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6709,53764,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6713,53767,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6716,53771,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6720,53774,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6724,53777,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6728,53780,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6731,53784,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6735,53787,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6739,53790,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6743,53793,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6746,53796,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6750,53799,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6754,53803,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6758,53806,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6761,53809,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6765,53812,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6769,53815,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6773,53818,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6776,53822,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6780,53825,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6784,53828,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6788,53831,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6791,53834,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6795,53837,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6799,53841,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6803,53844,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6806,53847,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6810,53850,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6814,53853,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6818,53856,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6821,53860,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6825,53863,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6829,53866,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6833,53869,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6836,53872,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6840,53875,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6844,53878,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6848,53881,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6851,53884,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6855,53887,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6859,53890,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6863,53893,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6866,53896,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6870,53899,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6874,53902,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6878,53905,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6881,53908,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6885,53911,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6889,53914,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6893,53917,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6896,53920,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6900,53923,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6904,53926,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6908,53929,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6911,53932,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6915,53935,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6919,53938,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6923,53941,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6926,53944,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6930,53947,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6934,53950,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6938,53953,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6941,53956,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6945,53959,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6949,53961,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6953,53964,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6956,53967,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6960,53970,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6964,53973,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6968,53975,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6971,53978,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6975,53981,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6979,53984,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6983,53987,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6986,53989,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6990,53992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6994,53995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=6998,53998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7001,54001,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7005,54003,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7009,54006,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7013,54009,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7016,54012,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7020,54015,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7024,54017,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7028,54020,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7031,54023,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7035,54026,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7039,54029,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7043,54031,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7046,54034,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7050,54037,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7054,54040,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7058,54043,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7061,54045,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7065,54048,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7069,54051,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7073,54053,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7076,54056,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7080,54058,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7084,54061,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7088,54064,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7091,54066,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7095,54069,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7099,54072,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7103,54074,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7106,54077,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7110,54080,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7114,54082,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7118,54085,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7121,54087,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7125,54090,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7129,54093,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7133,54095,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7136,54098,0.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7140,54101,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7144,54103,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7148,54106,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7151,54108,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7155,54111,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7159,54114,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7163,54116,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7166,54119,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7170,54122,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7174,54124,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7178,54127,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7181,54129,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7185,54132,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7189,54134,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7193,54137,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7196,54139,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7200,54142,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7204,54144,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7208,54147,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7211,54149,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7215,54152,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7219,54154,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7223,54157,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7226,54159,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7230,54162,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7234,54164,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7238,54167,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7241,54169,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7245,54172,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7249,54174,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7253,54177,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7256,54179,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7260,54182,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7264,54184,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7268,54187,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7271,54189,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7275,54192,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7279,54194,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7283,54197,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7286,54199,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7290,54202,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7294,54204,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7298,54206,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7301,54209,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7305,54211,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7309,54214,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7313,54216,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7316,54218,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7320,54221,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7324,54223,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7328,54225,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7331,54228,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7335,54230,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7339,54232,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7343,54235,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7346,54237,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7350,54239,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7354,54242,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7358,54244,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7361,54247,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7365,54249,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7369,54251,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7373,54254,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7376,54256,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/motion_control.c:mc_line:33 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7380,54258,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7384,54261,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7388,54263,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7391,54265,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7395,54268,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7399,54270,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7403,54272,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7406,54275,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7410,54277,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7414,54279,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7418,54282,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7421,54284,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7425,54286,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7429,54288,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7433,54291,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7436,54293,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7440,54295,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7444,54297,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7448,54299,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7451,54302,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7455,54304,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7459,54306,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7463,54308,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7466,54310,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7470,54313,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7474,54315,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7478,54317,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7481,54319,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7485,54321,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7489,54324,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7493,54326,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7496,54328,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7500,54330,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7504,54332,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7508,54335,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7511,54337,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7515,54339,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7519,54341,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7523,54343,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7526,54346,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7530,54348,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7534,54350,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7538,54352,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7541,54354,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7545,54356,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7549,54358,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7553,54360,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7556,54362,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7560,54364,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7564,54366,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7568,54368,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7571,54370,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7575,54372,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7579,54375,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7583,54377,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7586,54379,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7590,54381,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7594,54383,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7598,54385,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7601,54387,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7605,54389,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7609,54391,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7613,54393,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7616,54395,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7620,54397,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7624,54399,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7628,54401,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7631,54403,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7635,54405,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7639,54407,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7643,54409,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7646,54411,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7650,54413,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7654,54415,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7658,54417,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7661,54419,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7665,54421,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7669,54423,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7673,54425,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7676,54427,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7680,54429,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7684,54431,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7688,54433,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7691,54435,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7695,54436,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7699,54438,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7703,54440,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7706,54442,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7710,54444,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7714,54446,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7718,54448,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7721,54450,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7725,54452,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7729,54454,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7733,54456,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7736,54458,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7740,54459,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7744,54461,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7748,54463,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/motion_control.c:mc_line:33 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7751,54465,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7755,54467,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7759,54469,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7763,54471,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7766,54473,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7770,54475,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7774,54477,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7778,54479,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7781,54481,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7785,54483,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7789,54484,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7793,54486,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7796,54488,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7800,54490,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7804,54492,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7808,54494,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7811,54495,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7815,54497,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7819,54499,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7823,54501,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7826,54502,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7830,54504,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7834,54506,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7838,54508,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7841,54509,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7845,54511,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7849,54513,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7853,54515,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7856,54517,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7860,54518,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7864,54520,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7868,54522,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7871,54524,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7875,54525,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. + +../grbl/system.c:system_execute_line:134:################### +../grbl/system.c:system_execute_line:135:$ +system_execute_line switch line[1]= +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7879,54527,0.. +ok +[HLP:$$ $# $G $I $N $x=val $Nx=line $J=line $SLP $C $X $H ~ ! ? ctrl-x] +ok +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7883,54529,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7886,54531,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7890,54533,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7894,54534,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7898,54536,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7901,54538,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7905,54540,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7909,54541,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7913,54543,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7916,54545,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7920,54547,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7924,54548,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7928,54550,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7931,54552,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7935,54553,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7939,54555,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7943,54557,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7946,54558,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7950,54560,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7954,54562,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7958,54563,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7961,54565,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7965,54567,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7969,54568,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7973,54570,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7976,54572,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7980,54573,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7984,54575,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7988,54577,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7991,54578,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7995,54580,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=7999,54582,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8003,54583,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8006,54585,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8010,54587,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8014,54588,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8018,54590,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8021,54592,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8025,54593,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8029,54595,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8033,54597,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8036,54598,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8040,54600,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8044,54602,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8048,54603,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8051,54605,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8055,54607,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8059,54608,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8063,54610,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8066,54611,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8070,54613,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8074,54614,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8078,54616,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8081,54617,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8085,54619,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8089,54620,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8093,54622,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8096,54623,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8100,54625,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8104,54626,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8108,54628,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8111,54629,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8115,54631,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8119,54632,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8123,54634,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8126,54635,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8130,54637,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8134,54638,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8138,54640,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8141,54641,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8145,54643,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8149,54644,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8153,54646,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8156,54647,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8160,54649,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8164,54650,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8168,54652,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8171,54653,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8175,54655,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8179,54656,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8183,54658,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8186,54659,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8190,54661,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8194,54662,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8198,54663,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8201,54665,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8205,54666,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8209,54668,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8213,54669,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8216,54670,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8220,54672,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8224,54673,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8228,54675,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8231,54676,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8235,54677,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8239,54679,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8243,54680,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8246,54682,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8250,54683,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8254,54684,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8258,54686,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8261,54687,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8265,54689,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8269,54690,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8273,54691,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8276,54693,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8280,54694,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8284,54696,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8288,54697,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8291,54698,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8295,54700,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8299,54701,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8303,54703,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8306,54704,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8310,54705,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8314,54707,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8318,54708,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8321,54710,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8325,54711,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8329,54712,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8333,54713,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8336,54715,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8340,54716,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8344,54717,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8348,54718,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8351,54720,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8355,54721,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8359,54722,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8363,54724,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8366,54725,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8370,54726,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8374,54727,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8378,54729,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8381,54730,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8385,54731,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8389,54733,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8393,54734,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8396,54735,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8400,54736,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8404,54738,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8408,54739,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8411,54740,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8415,54741,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8419,54743,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8423,54744,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8426,54745,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8430,54747,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8434,54748,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8438,54749,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8441,54750,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8445,54752,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8449,54753,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8453,54754,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8456,54755,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8460,54757,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8464,54758,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8468,54759,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8471,54760,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8475,54761,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8479,54762,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8483,54764,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8486,54765,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8490,54766,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8494,54767,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8498,54768,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8501,54769,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8505,54771,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8509,54772,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8513,54773,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8516,54774,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8520,54775,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8524,54776,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8528,54777,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8531,54779,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8535,54780,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8539,54781,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8543,54782,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8546,54783,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8550,54784,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8554,54786,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8558,54787,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8561,54788,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8565,54789,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8569,54790,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8573,54791,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8576,54793,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8580,54794,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8584,54795,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8588,54796,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8591,54797,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8595,54798,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8599,54799,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8603,54800,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8606,54801,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8610,54802,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8614,54803,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8618,54805,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8621,54806,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8625,54807,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8629,54808,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8633,54809,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8636,54810,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8640,54811,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8644,54812,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8648,54813,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8651,54814,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8655,54815,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8659,54816,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8663,54817,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8666,54818,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8670,54819,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8674,54820,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8678,54822,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8681,54823,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8685,54824,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8689,54825,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8693,54826,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8696,54827,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8700,54828,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8704,54829,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8708,54830,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8711,54831,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8715,54832,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8719,54833,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8723,54834,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8726,54835,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8730,54836,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8734,54837,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8738,54838,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8741,54839,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8745,54840,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8749,54841,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8753,54842,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8756,54843,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8760,54844,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8764,54845,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8768,54845,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8771,54846,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8775,54847,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8779,54848,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8783,54849,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8786,54850,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8790,54851,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8794,54852,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8798,54853,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8801,54854,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8805,54855,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8809,54856,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8813,54856,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8816,54857,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8820,54858,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8824,54859,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8828,54860,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8831,54861,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8835,54862,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8839,54863,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8843,54864,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8846,54865,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8850,54866,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8854,54867,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8858,54867,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8861,54868,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8865,54869,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8869,54870,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8873,54871,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8876,54872,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8880,54873,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8884,54873,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8888,54874,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8891,54875,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8895,54876,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8899,54877,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8903,54877,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8906,54878,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8910,54879,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8914,54880,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8918,54881,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8921,54882,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8925,54882,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8929,54883,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8933,54884,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8936,54885,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8940,54886,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8944,54886,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8948,54887,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8951,54888,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8955,54889,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8959,54890,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8963,54890,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8966,54891,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8970,54892,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8974,54893,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8978,54894,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8981,54894,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8985,54895,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8989,54896,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8993,54897,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=8996,54898,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9000,54899,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9004,54899,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9008,54900,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9011,54901,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9015,54902,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9019,54902,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9023,54903,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9026,54904,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9030,54904,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9034,54905,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9038,54906,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9041,54907,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9045,54907,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9049,54908,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9053,54909,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9056,54910,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9060,54910,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9064,54911,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9068,54912,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9071,54912,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9075,54913,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9079,54914,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9083,54915,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9086,54915,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9090,54916,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9094,54917,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9098,54918,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9101,54918,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9105,54919,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9109,54920,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9113,54920,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9116,54921,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9120,54922,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9124,54923,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9128,54923,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9131,54924,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9135,54925,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9139,54925,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9143,54926,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9146,54927,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9150,54928,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9154,54928,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9158,54929,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9161,54929,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9165,54930,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9169,54930,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9173,54931,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9176,54932,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9180,54932,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9184,54933,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9188,54933,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9191,54934,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9195,54935,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9199,54935,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9203,54936,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9206,54936,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9210,54937,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9214,54937,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9218,54938,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9221,54939,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9225,54939,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9229,54940,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9233,54940,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9236,54941,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9240,54942,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9244,54942,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9248,54943,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9251,54943,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9255,54944,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9259,54944,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9263,54945,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9266,54946,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9270,54946,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9274,54947,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9278,54947,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9281,54948,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9285,54949,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9289,54949,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9293,54950,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9296,54950,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9300,54951,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9304,54951,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9308,54952,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9311,54952,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9315,54952,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9319,54953,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9323,54953,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9326,54954,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9330,54954,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9334,54955,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9338,54955,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9341,54956,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9345,54956,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9349,54957,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9353,54957,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9356,54958,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9360,54958,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9364,54959,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9368,54959,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9371,54960,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9375,54960,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9379,54961,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9383,54961,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9386,54961,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9390,54962,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9394,54962,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9398,54963,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9401,54963,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9405,54964,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9409,54964,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9413,54965,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9416,54965,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9420,54966,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9424,54966,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9428,54967,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9431,54967,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9435,54968,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9439,54968,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9443,54968,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9446,54969,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9450,54969,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9454,54970,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9458,54970,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9461,54970,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9465,54971,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9469,54971,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9473,54972,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9476,54972,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9480,54972,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9484,54973,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9488,54973,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9491,54973,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9495,54974,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9499,54974,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9503,54975,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9506,54975,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9510,54975,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9514,54976,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9518,54976,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9521,54977,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9525,54977,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9529,54977,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9533,54978,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9536,54978,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9540,54979,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9544,54979,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9548,54979,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9551,54980,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9555,54980,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9559,54981,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9563,54981,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9566,54981,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9570,54982,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9574,54982,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9578,54982,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9581,54983,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9585,54983,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9589,54983,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9593,54983,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9596,54984,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9600,54984,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9604,54984,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9608,54984,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9611,54985,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9615,54985,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9619,54985,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9623,54986,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9626,54986,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9630,54986,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9634,54986,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9638,54987,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9641,54987,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9645,54987,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9649,54987,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9653,54988,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9656,54988,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9660,54988,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9664,54988,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9668,54989,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9671,54989,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9675,54989,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9679,54989,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9683,54990,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9686,54990,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9690,54990,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9694,54991,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9698,54991,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9701,54991,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9705,54991,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9709,54992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9713,54992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9716,54992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9720,54992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9724,54992,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9728,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9731,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9735,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9739,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9743,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9746,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9750,54993,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9754,54994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9758,54994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9761,54994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9765,54994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9769,54994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9773,54994,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9776,54995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9780,54995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9784,54995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9788,54995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9791,54995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9795,54995,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9799,54996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9803,54996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9806,54996,0.. +../grbl/stepper.c:st_next_block_index:671 +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9810,54996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9814,54996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9818,54996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9821,54996,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9825,54997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9829,54997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9833,54997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9836,54997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9840,54997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9844,54997,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9848,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9851,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9855,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9859,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9863,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9866,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9870,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9874,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9878,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9881,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9885,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9889,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9893,54998,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9896,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9900,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9904,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9908,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9911,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9915,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9919,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9923,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9926,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9930,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9934,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9938,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9941,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9945,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9949,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9953,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9956,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9960,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9964,54999,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9968,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9971,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9975,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9979,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9983,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9986,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9990,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9994,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=9998,55000,0.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +../grbl/spindle_control.c:spindle_set_speed:131 Not supported yet.. +Segment buffer empty!!!!!!!!!!!!!!!!!!!!!../grbl/stepper.c:st_go_idle:295 +../grbl/stepper.c:ecmc_dummy_thread:237 Positions(x,y,z)=10000,55000,0.. + +raspberrypi-19924 > \ No newline at end of file