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

Added more tests.

This commit is contained in:
Stefan de Bruijn
2020-10-29 20:49:15 +01:00
parent 92e07eee5d
commit 162105c58e
2 changed files with 26 additions and 9 deletions

View File

@@ -95,17 +95,34 @@
// - BESC
// - DAC
//
// x User Digital pins
// #define USER_DIGITAL_PIN_0 "gpio.15"
// #define USER_DIGITAL_PIN_1 "gpio.2"
// #define USER_DIGITAL_PIN_2 "gpio.4"
// #define USER_DIGITAL_PIN_3 "gpio.16"
// x User Analog pins
// #define USER_ANALOG_PIN_0 "gpio.15"
// #define USER_ANALOG_PIN_1 "gpio.2"
// #define USER_ANALOG_PIN_2 "gpio.4"
// #define USER_ANALOG_PIN_3 "gpio.16"
//
// Input devices :
// x Probe
// #define PROBE_PIN "gpio.18:pu" // labeled Probe
// #define PROBE_PIN "gpio.18:pu"
// - User Analog / Digital pins
// - Limits
// - System : ControlSafetyDoor
// - System : ControlReset
// - System : ControlFeedHold
// - System : ControlCycleStart
// x Limits
// #define X_LIMIT_PIN "gpio.18:pu"
// x System : ControlSafetyDoor
// #define CONTROL_SAFETY_DOOR_PIN "gpio.22:pu"
// x System : ControlReset
// #define CONTROL_RESET_PIN "gpio.23:pu"
// x System : ControlFeedHold
// #define CONTROL_FEED_HOLD_PIN "gpio.22:pu"
// x System : ControlCycleStart
// #define CONTROL_CYCLE_START_PIN "gpio.18:pu"
// - System : Macro0
// - System : Macro1
// - System : Macro2
@@ -117,7 +134,7 @@
// - HuanyangSpindle
//
// Other :
// -RcServo
// - RcServo
// - SDCard
// - Trinamic

View File

@@ -9,7 +9,7 @@
#include <cstdint>
#include <cstring>
#define PIN_DEBUG // Pin debugging. WILL spam you with a lot of data!
// #define PIN_DEBUG // Pin debugging. WILL spam you with a lot of data!
// Forward declarations:
class String;