1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-30 09:39:49 +02:00

Merge pull request #434 from bdring/MitchBradley-issue430

Fix #430 - lowrider_v1p2.h error
This commit is contained in:
Mitch Bradley
2020-06-13 08:08:15 -10:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -50,10 +50,10 @@
//#define USE_SPINDLE_RELAY
#ifdef USE_SPINDLE_RELAY
#define SPINDLE_TYPE SPINDLE_TYPE_PWM
#define SPINDLE_TYPE SPINDLE_TYPE_RELAY
#define SPINDLE_OUTPUT_PIN GPIO_NUM_2
#else
#define SPINDLE_TYPE SPINDLE_TYPE_RELAY
#define SPINDLE_TYPE SPINDLE_TYPE_PWM
#define SPINDLE_OUTPUT_PIN GPIO_NUM_16
#define SPINDLE_ENABLE_PIN GPIO_NUM_32
#endif

View File

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