Skip to content

Instantly share code, notes, and snippets.

@brianredbeard
Last active July 3, 2021 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianredbeard/d682717a7fc4f4b3bb98a06bfdf44cc7 to your computer and use it in GitHub Desktop.
Save brianredbeard/d682717a7fc4f4b3bb98a06bfdf44cc7 to your computer and use it in GitHub Desktop.
CNC xPro v5 "patch" set

CNC xPro v5 "patch" set

About

For 4½ months the principals of Spark Concepts have dragged their feet about providing the source code run on the CNC xPROv5 to users of their hardware. I got fed up with this and finally decided to see what was going on.

What follows are the changes that Spark Concepts made to the project "Grbl_Esp32" supplied as patches in unified diff format.

The only file of real importance is CNC_xPRO_V5_XYYZ_PWM_NO.patch. This file contains the pin mappings and basic configurations for running the controller in the following configuration:

  • Three axis
  • Dual Y motor
  • PWM spindle
  • Normally open limit switches

While this is not the version of the file used by the author of this gist, it is supplied exactly as provided by Spark Concepts.

Directions

Clone the repository github.com/bdring/Grbl_Esp32

Check out commit eaffb964f7f1585336b3e354ea59dd544599b815

Review the following patches and apply as needed:

  • src/Machine.patch
  • src/Machines/CNC_xPRO_V5_XYYZ_PWM_NO.patch
  • src/WebUI/BTConfig.patch (optional)
  • src/WebUI/WifiConfig.patch (optional)
--- CNCxPRO src/WebUI/BTConfig.h
+++ Grbl_Esp32 src/WebUI/BTConfig.h
@@ -24,7 +24,7 @@
#endif
//defaults values
-const char* const DEFAULT_BT_NAME = "CNC_xPRO_V5";
+const char* const DEFAULT_BT_NAME = "btgrblesp";
#include <BluetoothSerial.h>
--- CNCxPRO src/Machines/CNC_xPRO_V5_XYYZ_PWM_NO.h
+++ Grbl_Esp32 src/Machines/CNC_xPRO_V5_XYYZ_PWM_NO.h
@@ -1,154 +0,0 @@
-#pragma once
-// clang-format off
-
-/*
- CNC_XPRO_V5_XYYZ.h
- Part of Grbl_ESP32
-
- Pin assignments for a 3-axis with Y ganged using Triaminic drivers
- in daisy-chained SPI mode.
- https://github.com/bdring/4_Axis_SPI_CNC
-
- 2019 - Bart Dring
- 2020 - Mitch Bradley
- 2020 - Spark Concepts
-
- Grbl_ESP32 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.
-
- Grbl 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.
-
- You should have received a copy of the GNU General Public License
- along with Grbl_ESP32. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#define MACHINE_NAME "CNC_xPRO_V5_XYYZ_PWM_NO"
-
-#ifdef N_AXIS
- #undef N_AXIS
-#endif
-#define N_AXIS 3 // can be 3 or 4. (if 3 install bypass jumper next to the A driver)
-
-#define TRINAMIC_DAISY_CHAIN
-
-#define TRINAMIC_RUN_MODE TrinamicMode :: CoolStep
-#define TRINAMIC_HOMING_MODE TrinamicMode :: CoolStep
-
-// Use SPI enable instead of the enable pin
-// The hardware enable pin is tied to ground
-#define USE_TRINAMIC_ENABLE
-
-//#define DEFAULT_HOMING_SQUARED_AXES bit(Y_AXIS)
-
-// Y motor connects to the 1st driver
-#define X_TRINAMIC_DRIVER 5160 // Which Driver Type?
-#define X_RSENSE 0.05f
-#define X_STEP_PIN GPIO_NUM_12
-#define X_DIRECTION_PIN GPIO_NUM_14
-#define X_CS_PIN GPIO_NUM_17 // Daisy Chain, all share same CS pin
-
-// Y motor connects to the 2nd driver
-#define Y_TRINAMIC_DRIVER 5160 // Which Driver Type?
-#define Y_RSENSE 0.05f
-#define Y_STEP_PIN GPIO_NUM_27
-#define Y_DIRECTION_PIN GPIO_NUM_26
-#define Y_CS_PIN X_CS_PIN // Daisy Chain, all share same CS pin
-
-// Y2 motor connects to the 2nd driver
-#define Y2_TRINAMIC_DRIVER 5160 // Which Driver Type?
-#define Y2_RSENSE 0.05f
-#define Y2_STEP_PIN GPIO_NUM_33 // Z on schem
-#define Y2_DIRECTION_PIN GPIO_NUM_32 // Z on schem
-#define Y2_CS_PIN X_CS_PIN // Daisy Chain, all share same CS pin
-
-
-// Z Axis motor connects to the 4th driver
-#define Z_TRINAMIC_DRIVER 5160 // Which Driver Type?
-#define Z_RSENSE 0.05f
-#define Z_STEP_PIN GPIO_NUM_15 // A on schem
-#define Z_DIRECTION_PIN GPIO_NUM_2 // A on schem
-#define Z_CS_PIN X_CS_PIN // Daisy Chain, all share same CS pin
-
-// Mist is a 3.3V output
-// Turn on with M7 and off with M9
-#define COOLANT_MIST_PIN GPIO_NUM_21
-#define SPINDLE_TYPE SpindleType::PWM
-#define SPINDLE_OUTPUT_PIN GPIO_NUM_25
-#define SPINDLE_ENABLE_PIN GPIO_NUM_4
-#define VFD_RS485_TXD_PIN GPIO_NUM_4
-#define VFD_RS485_RXD_PIN GPIO_NUM_25
-
-// Relay operation
-// Install Jumper near relay
-// For spindle Use max RPM of 1
-// For PWM remove jumper and set MAX RPM to something higher ($30 setting)
-// Interlock jumper along top edge needs to be installed for both versions
-#define DEFAULT_SPINDLE_RPM_MAX 12000 // Should be 1 for relay operation
-
-#define PROBE_PIN GPIO_NUM_22
-//#define SHOW_EXTENDED_SETTINGS
-#define X_LIMIT_PIN GPIO_NUM_35
-//#define A_LIMIT_PIN GPIO_NUM_36
-#define Y_LIMIT_PIN GPIO_NUM_34
-#define Z_LIMIT_PIN GPIO_NUM_39
-#define CONTROL_SAFETY_DOOR_PIN GPIO_NUM_16
-
-
-// Define default configuration
- //steps per mm
- #define DEFAULT_X_STEPS_PER_MM 200.0
- #define DEFAULT_Y_STEPS_PER_MM 200.0
- #define DEFAULT_Z_STEPS_PER_MM 200.0
- #define DEFAULT_A_STEPS_PER_MM 200.0
-
- //max speed
- # define DEFAULT_X_MAX_RATE 2500.0
- # define DEFAULT_Y_MAX_RATE 2500.0
- # define DEFAULT_Z_MAX_RATE 2500.0
-
- # define DEFAULT_X_ACCELERATION 100.0
- # define DEFAULT_Y_ACCELERATION 100.0
- # define DEFAULT_Z_ACCELERATION 100.0
-
- //default motor run current
- # define DEFAULT_X_CURRENT 1.8
- # define DEFAULT_Y_CURRENT 1.8
- # define DEFAULT_Z_CURRENT 1.8
- # define DEFAULT_A_CURRENT 1.8
-
- //default motor hold current
- # define DEFAULT_X_HOLD_CURRENT 1.25
- # define DEFAULT_Y_HOLD_CURRENT 1.25
- # define DEFAULT_Z_HOLD_CURRENT 1.25
- # define DEFAULT_A_HOLD_CURRENT 1.25
-
- //micro steps
- # define DEFAULT_X_MICROSTEPS 8
- # define DEFAULT_Y_MICROSTEPS 8
- # define DEFAULT_Z_MICROSTEPS 8
-
- //homing cycles (z then xy combined)
- # define DEFAULT_HOMING_CYCLE_0 bit(Z_AXIS)
- # define DEFAULT_HOMING_CYCLE_1 (bit(X_AXIS) | bit(Y_AXIS))
- # define DEFAULT_HOMING_PULLOFF 2.5
-
- //Stepper settings
- # define DEFAULT_STEP_PULSE_MICROSECONDS 4
- # define DEFAULT_STEPPER_IDLE_LOCK_TIME 255
-
- //switchs and probes
- # define DEFAULT_INVERT_PROBE_PIN 1
- # define DEFAULT_INVERT_LIMIT_PINS 1
-
- // Macro3 | Macro2 | Macro 1| Macr0 |Cycle Start | Feed Hold | Reset | Safety Door
- // For example B1101 will invert the function of the Reset pin.
- #ifdef INVERT_CONTROL_PIN_MASK
- #undef INVERT_CONTROL_PIN_MASK
- #endif
- // NC Door = B00001110, NO Door = B00001111
- # define INVERT_CONTROL_PIN_MASK B00001111
\ No newline at end of file
--- CNCxPRO src/Machine.h
+++ Grbl_Esp32 src/Machine.h
@@ -8,7 +8,7 @@
// !!! For initial testing, start with test_drive.h which disables
// all I/O pins
// #include "Machines/atari_1020.h"
-# include "Machines/CNC_xPRO_V5_XYYZ_PWM_NO.h"
+# include "Machines/test_drive.h"
// !!! For actual use, change the line above to select a board
// from Machines/, for example:
--- CNCxPRO src/WebUI/WifiConfig.h
+++ Grbl_Esp32 src/WebUI/WifiConfig.h
@@ -40,18 +40,18 @@
static const int ESP_APPLY_NOW = 1;
//defaults values
- static const char* DEFAULT_HOSTNAME = "CNC_xPRO_V5";
+ static const char* DEFAULT_HOSTNAME = "grblesp";
#ifdef CONNECT_TO_SSID
static const char* DEFAULT_STA_SSID = CONNECT_TO_SSID;
static const char* DEFAULT_STA_PWD = SSID_PASSWORD;
#else //!CONNECT_TO_SSID
- static const char* DEFAULT_STA_SSID = "CNC_xPRO_V5";
+ static const char* DEFAULT_STA_SSID = "GRBL_ESP";
static const char* DEFAULT_STA_PWD = "12345678";
#endif //CONNECT_TO_SSID
static const char* DEFAULT_STA_IP = "0.0.0.0";
static const char* DEFAULT_STA_GW = "0.0.0.0";
static const char* DEFAULT_STA_MK = "0.0.0.0";
- static const char* DEFAULT_AP_SSID = "CNC_xPRO_V5";
+ static const char* DEFAULT_AP_SSID = "GRBL_ESP";
static const char* DEFAULT_AP_PWD = "12345678";
static const char* DEFAULT_AP_IP = "192.168.0.1";
static const char* DEFAULT_AP_MK = "255.255.255.0";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment