1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-02 10:53:01 +02:00

Added spindle stop into reset

This commit is contained in:
bdring
2020-05-10 10:50:18 -05:00
parent 2043e220e0
commit e865caa766
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ void loop() {
// Reset Grbl primary systems. // Reset Grbl primary systems.
serial_reset_read_buffer(CLIENT_ALL); // Clear serial read buffer serial_reset_read_buffer(CLIENT_ALL); // Clear serial read buffer
gc_init(); // Set g-code parser to default state gc_init(); // Set g-code parser to default state
//spindle_select(SPINDLE_TYPE); spindle->stop();
coolant_init(); coolant_init();
limits_init(); limits_init();
probe_init(); probe_init();

View File

@@ -22,7 +22,7 @@
// Grbl versioning system // Grbl versioning system
#define GRBL_VERSION "1.2a" #define GRBL_VERSION "1.2a"
#define GRBL_VERSION_BUILD "20200507" #define GRBL_VERSION_BUILD "20200510"
//#include <sdkconfig.h> //#include <sdkconfig.h>
#include <Arduino.h> #include <Arduino.h>