2016-03-24 23:19:46 -07:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
* 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
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
*/
|
2019-07-04 22:44:12 -05:00
|
|
|
#pragma once
|
2016-03-24 18:01:20 +00:00
|
|
|
|
2015-02-19 17:26:22 -08:00
|
|
|
/**
|
|
|
|
* BAM&DICE Due (Arduino Mega) pin assignments
|
|
|
|
*/
|
|
|
|
|
2017-04-06 17:15:09 -05:00
|
|
|
#if HOTENDS > 2 || E_STEPPERS > 2
|
|
|
|
#error "2PrintBeta Due supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
2016-07-29 16:13:19 -07:00
|
|
|
#endif
|
|
|
|
|
2019-08-20 19:08:58 -05:00
|
|
|
#define BOARD_INFO_NAME "2PrintBeta Due"
|
2016-06-30 10:24:29 +01:00
|
|
|
|
2017-04-07 13:52:21 -05:00
|
|
|
//
|
|
|
|
// M3/M4/M5 - Spindle/Laser Control
|
|
|
|
//
|
2020-11-07 16:53:37 -06:00
|
|
|
#define SPINDLE_LASER_ENA_PIN 66 // Pullup or pulldown!
|
|
|
|
#define SPINDLE_DIR_PIN 67
|
|
|
|
#define SPINDLE_LASER_PWM_PIN 44 // Hardware PWM
|
2017-04-07 13:52:21 -05:00
|
|
|
|
2016-10-09 05:27:04 +09:00
|
|
|
//
|
|
|
|
// Temperature Sensors
|
|
|
|
//
|
2020-11-07 16:53:37 -06:00
|
|
|
#define TEMP_0_PIN 9 // Analog Input
|
|
|
|
#define TEMP_1_PIN 11 // Analog Input
|
2021-08-28 15:27:52 -05:00
|
|
|
|
|
|
|
#include "pins_RAMPS.h"
|