2017-10-08 16:38:10 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-02-12 21:06:53 +00:00
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-10-08 16:38:10 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Espressif ESP32 (Tensilica Xtensa LX6) pin assignments
|
|
|
|
*/
|
|
|
|
|
2019-03-13 10:25:54 +00:00
|
|
|
#ifndef ARDUINO_ARCH_ESP32
|
|
|
|
"Oops! Select an ESP32 board in 'Tools > Board.'"
|
|
|
|
#endif
|
|
|
|
|
2018-11-14 06:23:18 +00:00
|
|
|
#define BOARD_NAME "Espressif ESP32"
|
2017-10-08 16:38:10 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Limit Switches
|
|
|
|
//
|
|
|
|
#define X_MIN_PIN 34
|
|
|
|
#define Y_MIN_PIN 35
|
|
|
|
#define Z_MIN_PIN 15
|
|
|
|
|
|
|
|
//
|
|
|
|
// Steppers
|
|
|
|
//
|
2019-05-25 22:06:00 +00:00
|
|
|
#define I2S_STEPPER_STREAM
|
|
|
|
|
2019-02-10 11:40:31 +00:00
|
|
|
#define X_STEP_PIN 128
|
|
|
|
#define X_DIR_PIN 129
|
|
|
|
#define X_ENABLE_PIN 130
|
2019-03-13 10:25:54 +00:00
|
|
|
//#define X_CS_PIN 0
|
2017-10-08 16:38:10 +00:00
|
|
|
|
2019-02-10 11:40:31 +00:00
|
|
|
#define Y_STEP_PIN 131
|
|
|
|
#define Y_DIR_PIN 132
|
|
|
|
#define Y_ENABLE_PIN 133
|
2019-03-13 10:25:54 +00:00
|
|
|
//#define Y_CS_PIN 13
|
2017-10-08 16:38:10 +00:00
|
|
|
|
2019-02-10 11:40:31 +00:00
|
|
|
#define Z_STEP_PIN 134
|
|
|
|
#define Z_DIR_PIN 135
|
|
|
|
#define Z_ENABLE_PIN 136
|
2019-03-13 10:25:54 +00:00
|
|
|
//#define Z_CS_PIN 5 // SS_PIN
|
2017-10-08 16:38:10 +00:00
|
|
|
|
2019-02-10 11:40:31 +00:00
|
|
|
#define E0_STEP_PIN 137
|
|
|
|
#define E0_DIR_PIN 138
|
|
|
|
#define E0_ENABLE_PIN 139
|
2019-03-13 10:25:54 +00:00
|
|
|
//#define E0_CS_PIN 21
|
2017-10-08 16:38:10 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Temperature Sensors
|
|
|
|
//
|
2019-03-13 10:25:54 +00:00
|
|
|
#define TEMP_0_PIN 36 // Analog Input
|
|
|
|
#define TEMP_BED_PIN 39 // Analog Input
|
2017-10-08 16:38:10 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
2019-03-13 10:25:54 +00:00
|
|
|
#define HEATER_0_PIN 2
|
|
|
|
#define FAN_PIN 13
|
|
|
|
#define HEATER_BED_PIN 4
|
2019-04-21 22:15:15 +00:00
|
|
|
|
|
|
|
// SPI
|
|
|
|
#define SDSS 5
|