1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-28 16:49:54 +02:00

Merge branch 'main' of https://github.com/bdring/Grbl_Esp32 into master

This commit is contained in:
Jens Hauser
2020-10-01 00:03:49 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1478,10 +1478,10 @@ Error gc_execute_line(char* line, uint8_t client) {
memcpy(gc_state.position, coord_data, sizeof(gc_state.position));
break;
case NonModal::SetHome0:
coords[CoordIndex::G28]->set(coord_data);
coords[CoordIndex::G28]->set(gc_state.position);
break;
case NonModal::SetHome1:
coords[CoordIndex::G30]->set(coord_data);
coords[CoordIndex::G30]->set(gc_state.position);
break;
case NonModal::SetCoordinateOffset:
memcpy(gc_state.coord_offset, gc_block.values.xyz, sizeof(gc_block.values.xyz));

View File

@@ -23,7 +23,7 @@
// Grbl versioning system
const char* const GRBL_VERSION = "1.3a";
const char* const GRBL_VERSION_BUILD = "20200928";
const char* const GRBL_VERSION_BUILD = "20200929";
//#include <sdkconfig.h>
#include <Arduino.h>