Merge pull request #1188 from wolfmanjm/upstreamedge
[clinton/Smoothieware.git] / src / modules / tools / zprobe / ZProbe.cpp
CommitLineData
88443c6b
JM
1/*
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6*/
7
8#include "ZProbe.h"
9
10#include "Kernel.h"
11#include "BaseSolution.h"
12#include "Config.h"
13#include "Robot.h"
14#include "StepperMotor.h"
15#include "StreamOutputPool.h"
16#include "Gcode.h"
17#include "Conveyor.h"
88443c6b
JM
18#include "checksumm.h"
19#include "ConfigValue.h"
20#include "SlowTicker.h"
21#include "Planner.h"
037c350d 22#include "SerialMessage.h"
9f6f04a5
JM
23#include "PublicDataRequest.h"
24#include "EndstopsPublicAccess.h"
25#include "PublicData.h"
ce9d2bda 26#include "LevelingStrategy.h"
a157d099 27#include "StepTicker.h"
37102904 28#include "utils.h"
a5542cae
JM
29
30// strategies we know about
f6efadb0 31#include "DeltaCalibrationStrategy.h"
a5542cae 32#include "ThreePointStrategy.h"
59d4d4ea 33#include "DeltaGridStrategy.h"
6c972e51 34#include "CartGridStrategy.h"
88443c6b 35
88443c6b
JM
36#define enable_checksum CHECKSUM("enable")
37#define probe_pin_checksum CHECKSUM("probe_pin")
7778d1ce 38#define debounce_ms_checksum CHECKSUM("debounce_ms")
681a62d7
JM
39#define slow_feedrate_checksum CHECKSUM("slow_feedrate")
40#define fast_feedrate_checksum CHECKSUM("fast_feedrate")
b469231e 41#define return_feedrate_checksum CHECKSUM("return_feedrate")
681a62d7 42#define probe_height_checksum CHECKSUM("probe_height")
f3b66360 43#define gamma_max_checksum CHECKSUM("gamma_max")
93f20a8c 44#define reverse_z_direction_checksum CHECKSUM("reverse_z")
88443c6b 45
681a62d7 46// from endstop section
b7cd847e 47#define delta_homing_checksum CHECKSUM("delta_homing")
d8198a57 48#define rdelta_homing_checksum CHECKSUM("rdelta_homing")
88443c6b
JM
49
50#define X_AXIS 0
51#define Y_AXIS 1
52#define Z_AXIS 2
53
c8bac202 54#define STEPPER THEROBOT->actuators
dd0a7cfa 55#define STEPS_PER_MM(a) (STEPPER[a]->get_steps_per_mm())
56ce2b5a
JM
56#define Z_STEPS_PER_MM STEPS_PER_MM(Z_AXIS)
57
88443c6b
JM
58void ZProbe::on_module_loaded()
59{
60 // if the module is disabled -> do nothing
56ce2b5a 61 if(!THEKERNEL->config->value( zprobe_checksum, enable_checksum )->by_default(false)->as_bool()) {
88443c6b
JM
62 // as this module is not needed free up the resource
63 delete this;
64 return;
65 }
88443c6b
JM
66
67 // load settings
de5787e0 68 this->config_load();
88443c6b 69 // register event-handlers
88443c6b 70 register_for_event(ON_GCODE_RECEIVED);
88443c6b 71
fc6c9aac 72 // we read the probe in this timer
778093ce
JM
73 probing= false;
74 THEKERNEL->slow_ticker->attach(1000, this, &ZProbe::read_probe);
88443c6b
JM
75}
76
de5787e0 77void ZProbe::config_load()
88443c6b 78{
681a62d7 79 this->pin.from_string( THEKERNEL->config->value(zprobe_checksum, probe_pin_checksum)->by_default("nc" )->as_string())->as_input();
7778d1ce 80 this->debounce_ms = THEKERNEL->config->value(zprobe_checksum, debounce_ms_checksum)->by_default(0 )->as_number();
681a62d7 81
ce9d2bda 82 // get strategies to load
f6efadb0
JM
83 vector<uint16_t> modules;
84 THEKERNEL->config->get_module_list( &modules, leveling_strategy_checksum);
85 for( auto cs : modules ){
86 if( THEKERNEL->config->value(leveling_strategy_checksum, cs, enable_checksum )->as_bool() ){
87 bool found= false;
9ad47eab
JM
88 LevelingStrategy *ls= nullptr;
89
f6efadb0
JM
90 // check with each known strategy and load it if it matches
91 switch(cs) {
92 case delta_calibration_strategy_checksum:
9ad47eab 93 ls= new DeltaCalibrationStrategy(this);
f6efadb0
JM
94 found= true;
95 break;
a5542cae
JM
96
97 case three_point_leveling_strategy_checksum:
98 // NOTE this strategy is mutually exclusive with the delta calibration strategy
9ad47eab 99 ls= new ThreePointStrategy(this);
a5542cae
JM
100 found= true;
101 break;
102
59d4d4ea 103 case delta_grid_leveling_strategy_checksum:
9ad47eab 104 ls= new DeltaGridStrategy(this);
59d4d4ea
JM
105 found= true;
106 break;
6c972e51
JL
107
108 case cart_grid_leveling_strategy_checksum:
109 ls= new CartGridStrategy(this);
110 found= true;
111 break;
f6efadb0 112 }
9ad47eab
JM
113 if(found) {
114 if(ls->handleConfig()) {
115 this->strategies.push_back(ls);
116 }else{
117 delete ls;
118 }
119 }
f6efadb0
JM
120 }
121 }
ce9d2bda 122
57e927fa 123 // need to know if we need to use delta kinematics for homing
ce9d2bda 124 this->is_delta = THEKERNEL->config->value(delta_homing_checksum)->by_default(false)->as_bool();
d8198a57 125 this->is_rdelta = THEKERNEL->config->value(rdelta_homing_checksum)->by_default(false)->as_bool();
ce9d2bda 126
f6efadb0 127 // default for backwards compatibility add DeltaCalibrationStrategy if a delta
81c3ecbf 128 // may be deprecated
f6efadb0 129 if(this->strategies.empty()) {
57e927fa
JM
130 if(this->is_delta) {
131 this->strategies.push_back(new DeltaCalibrationStrategy(this));
132 this->strategies.back()->handleConfig();
133 }
037c350d 134 }
681a62d7 135
f3b66360 136 this->probe_height = THEKERNEL->config->value(zprobe_checksum, probe_height_checksum)->by_default(5.0F)->as_number();
681a62d7
JM
137 this->slow_feedrate = THEKERNEL->config->value(zprobe_checksum, slow_feedrate_checksum)->by_default(5)->as_number(); // feedrate in mm/sec
138 this->fast_feedrate = THEKERNEL->config->value(zprobe_checksum, fast_feedrate_checksum)->by_default(100)->as_number(); // feedrate in mm/sec
b469231e 139 this->return_feedrate = THEKERNEL->config->value(zprobe_checksum, return_feedrate_checksum)->by_default(0)->as_number(); // feedrate in mm/sec
bac3c948 140 this->reverse_z = THEKERNEL->config->value(zprobe_checksum, reverse_z_direction_checksum)->by_default(false)->as_bool(); // Z probe moves in reverse direction
f3b66360 141 this->max_z = THEKERNEL->config->value(gamma_max_checksum)->by_default(500)->as_number(); // maximum zprobe distance
88443c6b
JM
142}
143
6d142b73 144uint32_t ZProbe::read_probe(uint32_t dummy)
88443c6b 145{
6d142b73 146 if(!probing || probe_detected) return 0;
88443c6b 147
8fe38353
JM
148 // we check all axis as it maybe a G38.2 X10 for instance, not just a probe in Z
149 if(STEPPER[X_AXIS]->is_moving() || STEPPER[Y_AXIS]->is_moving() || STEPPER[Z_AXIS]->is_moving()) {
6d142b73
JM
150 // if it is moving then we check the probe, and debounce it
151 if(this->pin.get()) {
7778d1ce 152 if(debounce < debounce_ms) {
88443c6b
JM
153 debounce++;
154 } else {
6d142b73
JM
155 // we signal the motors to stop, which will preempt any moves on that axis
156 // we do all motors as it may be a delta
157 for(auto &a : THEROBOT->actuators) a->stop_moving();
158 probe_detected= true;
159 debounce= 0;
88443c6b 160 }
6d142b73 161
88443c6b 162 } else {
6d142b73
JM
163 // The endstop was not hit yet
164 debounce= 0;
88443c6b
JM
165 }
166 }
6d142b73
JM
167
168 return 0;
88443c6b 169}
88443c6b 170
6d142b73 171// single probe in Z with custom feedrate
771fb7b2 172// returns boolean value indicating if probe was triggered
6d142b73 173bool ZProbe::run_probe(float& mm, float feedrate, float max_dist, bool reverse)
88443c6b 174{
965cc29a
JM
175 if(this->pin.get()) {
176 // probe already triggered so abort
177 return false;
178 }
179
36a21d48 180 float maxz= max_dist < 0 ? this->max_z*2 : max_dist;
88443c6b 181
6d142b73
JM
182 probing= true;
183 probe_detected= false;
184 debounce= 0;
185
186 // save current actuator position so we can report how far we moved
eb0d75d3 187 float z_start_pos= THEROBOT->actuators[Z_AXIS]->get_current_position();
6d142b73 188
88443c6b 189 // move Z down
8fd0f38d 190 bool dir= (!reverse_z != reverse); // xor
6d142b73 191 float delta[3]= {0,0,0};
7778d1ce 192 delta[Z_AXIS]= dir ? -maxz : maxz;
121094a5 193 THEROBOT->delta_move(delta, feedrate, 3);
b7cd847e 194
6d142b73 195 // wait until finished
04782655 196 THECONVEYOR->wait_for_idle();
7d6fe308 197
6d142b73 198 // now see how far we moved, get delta in z we moved
29e809e0 199 // NOTE this works for deltas as well as all three actuators move the same amount in Z
eb0d75d3 200 mm= z_start_pos - THEROBOT->actuators[2]->get_current_position();
6d142b73
JM
201
202 // set the last probe position to the actuator units moved during this home
eb0d75d3 203 THEROBOT->set_last_probe_position(std::make_tuple(0, 0, mm, probe_detected?1:0));
6d142b73 204
7778d1ce
JM
205 probing= false;
206
207 if(probe_detected) {
208 // if the probe stopped the move we need to correct the last_milestone as it did not reach where it thought
209 THEROBOT->reset_position_from_current_actuator_position();
210 }
6d142b73
JM
211
212 return probe_detected;
88443c6b
JM
213}
214
71f0df19
JM
215// do probe then return to start position
216bool ZProbe::run_probe_return(float& mm, float feedrate, float max_dist, bool reverse)
681a62d7 217{
eb0d75d3 218 float save_z_pos= THEROBOT->get_axis_position(Z_AXIS);
71f0df19
JM
219
220 bool ok= run_probe(mm, feedrate, max_dist, reverse);
221
681a62d7 222 // move probe back to where it was
b469231e
RM
223 float fr;
224 if(this->return_feedrate != 0) { // use return_feedrate if set
225 fr = this->return_feedrate;
226 } else {
227 fr = this->slow_feedrate*2; // nominally twice slow feedrate
228 if(fr > this->fast_feedrate) fr = this->fast_feedrate; // unless that is greater than fast feedrate
229 }
230
c42bad8f 231 // absolute move back to saved starting position
eb0d75d3 232 coordinated_move(NAN, NAN, save_z_pos, fr, false);
681a62d7 233
71f0df19 234 return ok;
681a62d7
JM
235}
236
6d142b73 237bool ZProbe::doProbeAt(float &mm, float x, float y)
97832d6d 238{
97832d6d
JM
239 // move to xy
240 coordinated_move(x, y, NAN, getFastFeedrate());
71f0df19 241 return run_probe_return(mm, slow_feedrate);
97832d6d 242}
fc7b9a7b 243
88443c6b
JM
244void ZProbe::on_gcode_received(void *argument)
245{
246 Gcode *gcode = static_cast<Gcode *>(argument);
88443c6b 247
57e927fa 248 if( gcode->has_g && gcode->g >= 29 && gcode->g <= 32) {
36a21d48 249
25dc6344 250 // make sure the probe is defined and not already triggered before moving motors
36a21d48 251 if(!this->pin.connected()) {
7b18a698 252 gcode->stream->printf("ZProbe pin not configured.\n");
25dc6344
JM
253 return;
254 }
965cc29a 255
25dc6344
JM
256 if(this->pin.get()) {
257 gcode->stream->printf("ZProbe triggered before move, aborting command.\n");
258 return;
259 }
260
681a62d7 261 if( gcode->g == 30 ) { // simple Z probe
8fe38353 262 // first wait for all moves to finish
04782655 263 THEKERNEL->conveyor->wait_for_idle();
88443c6b 264
71f0df19 265 bool set_z= (gcode->has_letter('Z') && !is_rdelta);
771fb7b2 266 bool probe_result;
93f20a8c
JM
267 bool reverse= (gcode->has_letter('R') && gcode->get_value('R') != 0); // specify to probe in reverse direction
268 float rate= gcode->has_letter('F') ? gcode->get_value('F') / 60 : this->slow_feedrate;
7778d1ce 269 float mm;
71f0df19
JM
270
271 // if not setting Z then return probe to where it started, otherwise leave it where it is
272 probe_result = (set_z ? run_probe(mm, rate, -1, reverse) : run_probe_return(mm, rate, -1, reverse));
771fb7b2
RM
273
274 if(probe_result) {
71f0df19 275 // the result is in actuator coordinates moved
6d142b73 276 gcode->stream->printf("Z:%1.4f\n", mm);
078f76e0 277
71f0df19 278 if(set_z) {
fd2341bc
JM
279 // set current Z to the specified value, shortcut for G92 Znnn
280 char buf[32];
281 int n = snprintf(buf, sizeof(buf), "G92 Z%f", gcode->get_value('Z'));
282 string g(buf, n);
283 Gcode gc(g, &(StreamOutput::NullStream));
284 THEKERNEL->call_event(ON_GCODE_RECEIVED, &gc);
bd96f4d7 285 }
078f76e0 286
681a62d7 287 } else {
bd96f4d7 288 gcode->stream->printf("ZProbe not triggered\n");
88443c6b 289 }
fc7b9a7b 290
ce9d2bda 291 } else {
aaf0c0ee 292 if(!gcode->has_letter('P')) {
fc92f0ac
JM
293 // find the first strategy to handle the gcode
294 for(auto s : strategies){
295 if(s->handleGcode(gcode)) {
296 return;
297 }
298 }
299 gcode->stream->printf("No strategy found to handle G%d\n", gcode->g);
300
301 }else{
aaf0c0ee
JM
302 // P paramater selects which strategy to send the code to
303 // they are loaded in the order they are defined in config, 0 being the first, 1 being the second and so on.
304 uint16_t i= gcode->get_value('P');
305 if(i < strategies.size()) {
fc92f0ac 306 if(!strategies[i]->handleGcode(gcode)){
aaf0c0ee 307 gcode->stream->printf("strategy #%d did not handle G%d\n", i, gcode->g);
fc92f0ac 308 }
ce9d2bda 309 return;
fc92f0ac
JM
310
311 }else{
aaf0c0ee 312 gcode->stream->printf("strategy #%d is not loaded\n", i);
037c350d 313 }
fc7b9a7b 314 }
88443c6b
JM
315 }
316
6c0193b3 317 } else if(gcode->has_g && gcode->g == 38 ) { // G38.2 Straight Probe with error, G38.3 straight probe without error
36a21d48
JM
318 // linuxcnc/grbl style probe http://www.linuxcnc.org/docs/2.5/html/gcode/gcode.html#sec:G38-probe
319 if(gcode->subcode != 2 && gcode->subcode != 3) {
07186543 320 gcode->stream->printf("error:Only G38.2 and G38.3 are supported\n");
36a21d48
JM
321 return;
322 }
323
324 // make sure the probe is defined and not already triggered before moving motors
325 if(!this->pin.connected()) {
e714bd32 326 gcode->stream->printf("error:ZProbe not connected.\n");
36a21d48
JM
327 return;
328 }
17f26e01 329
36a21d48 330 if(this->pin.get()) {
e714bd32 331 gcode->stream->printf("error:ZProbe triggered before move, aborting command.\n");
36a21d48
JM
332 return;
333 }
334
8fe38353 335 // first wait for all moves to finish
04782655 336 THEKERNEL->conveyor->wait_for_idle();
36a21d48
JM
337
338 if(gcode->has_letter('X')) {
339 // probe in the X axis
a2f1ce04 340 probe_XYZ(gcode, X_AXIS);
36a21d48
JM
341
342 }else if(gcode->has_letter('Y')) {
343 // probe in the Y axis
a2f1ce04 344 probe_XYZ(gcode, Y_AXIS);
36a21d48
JM
345
346 }else if(gcode->has_letter('Z')) {
a2f1ce04
JM
347 // probe in the Z axis
348 probe_XYZ(gcode, Z_AXIS);
36a21d48 349
36a21d48 350 }else{
e714bd32 351 gcode->stream->printf("error:at least one of X Y or Z must be specified\n");
36a21d48 352 }
7484e84a 353
36a21d48
JM
354 return;
355
88443c6b
JM
356 } else if(gcode->has_m) {
357 // M code processing here
3434eac0
RM
358 int c;
359 switch (gcode->m) {
360 case 119:
361 c = this->pin.get();
362 gcode->stream->printf(" Probe: %d", c);
363 gcode->add_nl = true;
364 break;
365
366 case 670:
367 if (gcode->has_letter('S')) this->slow_feedrate = gcode->get_value('S');
368 if (gcode->has_letter('K')) this->fast_feedrate = gcode->get_value('K');
369 if (gcode->has_letter('R')) this->return_feedrate = gcode->get_value('R');
370 if (gcode->has_letter('Z')) this->max_z = gcode->get_value('Z');
371 if (gcode->has_letter('H')) this->probe_height = gcode->get_value('H');
39f1d9bd
JM
372 if (gcode->has_letter('I')) { // NOTE this is temporary and toggles the invertion status of the pin
373 invert_override= (gcode->get_value('I') != 0);
374 pin.set_inverting(pin.is_inverting() != invert_override); // XOR so inverted pin is not inverted and vice versa
375 }
3434eac0
RM
376 break;
377
378 case 500: // save settings
379 case 503: // print settings
fc92f0ac
JM
380 gcode->stream->printf(";Probe feedrates Slow/fast(K)/Return (mm/sec) max_z (mm) height (mm):\nM670 S%1.2f K%1.2f R%1.2f Z%1.2f H%1.2f\n",
381 this->slow_feedrate, this->fast_feedrate, this->return_feedrate, this->max_z, this->probe_height);
382
3434eac0
RM
383 // fall through is intended so leveling strategies can handle m-codes too
384
385 default:
386 for(auto s : strategies){
387 if(s->handleGcode(gcode)) {
388 return;
389 }
ce9d2bda 390 }
bd96f4d7 391 }
88443c6b
JM
392 }
393}
394
778093ce 395// special way to probe in the X or Y or Z direction using planned moves, should work with any kinematics
a2f1ce04 396void ZProbe::probe_XYZ(Gcode *gcode, int axis)
37102904 397{
778093ce
JM
398 // enable the probe checking in the timer
399 probing= true;
400 probe_detected= false;
c8bac202 401 THEROBOT->disable_segmentation= true; // we must disable segmentation as this won't work with it enabled (beware on deltas probing in X or Y)
37102904 402
73cad2e1
JM
403 // get probe feedrate in mm/min and convert to mm/sec if specified
404 float rate = (gcode->has_letter('F')) ? gcode->get_value('F')/60 : this->slow_feedrate;
37102904 405
778093ce
JM
406 // do a regular move which will stop as soon as the probe is triggered, or the distance is reached
407 switch(axis) {
408 case X_AXIS: coordinated_move(gcode->get_value('X'), 0, 0, rate, true); break;
409 case Y_AXIS: coordinated_move(0, gcode->get_value('Y'), 0, rate, true); break;
410 case Z_AXIS: coordinated_move(0, 0, gcode->get_value('Z'), rate, true); break;
37102904
JM
411 }
412
778093ce
JM
413 // coordinated_move returns when the move is finished
414
415 // disable probe checking
416 probing= false;
c8bac202 417 THEROBOT->disable_segmentation= false;
37102904 418
8fe38353
JM
419 // if the probe stopped the move we need to correct the last_milestone as it did not reach where it thought
420 // this also sets last_milestone to the machine coordinates it stopped at
421 THEROBOT->reset_position_from_current_actuator_position();
37102904 422 float pos[3];
8fe38353 423 THEROBOT->get_axis_position(pos, 3);
37102904 424
778093ce 425 uint8_t probeok= this->probe_detected ? 1 : 0;
b76a9926 426
17f26e01 427 // print results using the GRBL format
b76a9926 428 gcode->stream->printf("[PRB:%1.3f,%1.3f,%1.3f:%d]\n", pos[X_AXIS], pos[Y_AXIS], pos[Z_AXIS], probeok);
c8bac202 429 THEROBOT->set_last_probe_position(std::make_tuple(pos[X_AXIS], pos[Y_AXIS], pos[Z_AXIS], probeok));
b76a9926 430
8fe38353 431 if(probeok == 0 && gcode->subcode == 2) {
93f20a8c 432 // issue error if probe was not triggered and subcode == 2
39c0196b 433 gcode->stream->printf("ALARM: Probe fail\n");
93f20a8c 434 THEKERNEL->call_event(ON_HALT, nullptr);
778093ce 435 }
37102904
JM
436}
437
681a62d7
JM
438// issue a coordinated move directly to robot, and return when done
439// Only move the coordinates that are passed in as not nan
6d142b73 440// NOTE must use G53 to force move in machine coordinates and ignore any WCS offsets
037c350d 441void ZProbe::coordinated_move(float x, float y, float z, float feedrate, bool relative)
681a62d7 442{
3aa7e94e
JM
443 #define CMDLEN 128
444 char *cmd= new char[CMDLEN]; // use heap here to reduce stack usage
037c350d
JM
445
446 if(relative) strcpy(cmd, "G91 G0 ");
e0be983d 447 else strcpy(cmd, "G53 G0 "); // G53 forces movement in machine coordinate system
037c350d 448
681a62d7 449 if(!isnan(x)) {
eb0d75d3 450 size_t n= strlen(cmd);
3aa7e94e 451 snprintf(&cmd[n], CMDLEN-n, " X%1.3f", x);
681a62d7
JM
452 }
453 if(!isnan(y)) {
eb0d75d3 454 size_t n= strlen(cmd);
3aa7e94e 455 snprintf(&cmd[n], CMDLEN-n, " Y%1.3f", y);
681a62d7
JM
456 }
457 if(!isnan(z)) {
eb0d75d3 458 size_t n= strlen(cmd);
3aa7e94e 459 snprintf(&cmd[n], CMDLEN-n, " Z%1.3f", z);
eb0d75d3
JM
460 }
461
462 {
463 size_t n= strlen(cmd);
464 // use specified feedrate (mm/sec)
3aa7e94e 465 snprintf(&cmd[n], CMDLEN-n, " F%1.1f", feedrate * 60); // feed rate is converted to mm/min
681a62d7
JM
466 }
467
037c350d
JM
468 if(relative) strcat(cmd, " G90");
469
3aa7e94e 470 THEKERNEL->streams->printf("DEBUG: move: %s: %u\n", cmd, strlen(cmd));
681a62d7 471
037c350d 472 // send as a command line as may have multiple G codes in it
049c9aae 473 THEROBOT->push_state();
037c350d
JM
474 struct SerialMessage message;
475 message.message = cmd;
bb9951c2
JM
476 delete [] cmd;
477
037c350d
JM
478 message.stream = &(StreamOutput::NullStream);
479 THEKERNEL->call_event(ON_CONSOLE_LINE_RECEIVED, &message );
04782655 480 THEKERNEL->conveyor->wait_for_idle();
049c9aae 481 THEROBOT->pop_state();
bb9951c2 482
681a62d7
JM
483}
484
485// issue home command
486void ZProbe::home()
487{
9a6cabd8 488 Gcode gc(THEKERNEL->is_grbl_mode() ? "G28.2" : "G28", &(StreamOutput::NullStream));
681a62d7
JM
489 THEKERNEL->call_event(ON_GCODE_RECEIVED, &gc);
490}