2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-03-02 09:49:45 +00:00
|
|
|
/**
|
2016-02-29 07:13:50 +00:00
|
|
|
* FELIXprinters v2.0/3.0 (RAMPS v1.4) pin assignments
|
2015-03-02 09:49:45 +00:00
|
|
|
*/
|
2015-03-01 09:16:55 +00:00
|
|
|
|
2016-07-29 23:13:19 +00:00
|
|
|
#if HOTENDS > 2
|
|
|
|
#error "Felix 2.0+ supports up to 2 hotends. Comment this line to keep going."
|
|
|
|
#endif
|
|
|
|
|
2016-06-30 09:24:29 +00:00
|
|
|
#define BOARD_NAME "Felix 2.0+"
|
|
|
|
|
2016-10-08 20:27:04 +00:00
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
2016-08-02 19:32:36 +00:00
|
|
|
// Power outputs EFBF or EFBE
|
2016-07-30 12:32:00 +00:00
|
|
|
#define MOSFET_D_PIN 7
|
2015-03-01 09:16:55 +00:00
|
|
|
|
2016-07-30 10:10:30 +00:00
|
|
|
#include "pins_RAMPS.h"
|
2015-05-22 23:20:54 +00:00
|
|
|
|
2016-10-08 20:27:04 +00:00
|
|
|
//
|
|
|
|
// Misc. Functions
|
|
|
|
//
|
2015-03-28 03:29:05 +00:00
|
|
|
#undef SDPOWER
|
2015-03-02 09:49:45 +00:00
|
|
|
#define SDPOWER 1
|
2015-03-01 09:16:55 +00:00
|
|
|
|
|
|
|
#define PS_ON_PIN 12
|
|
|
|
|
2016-10-08 20:27:04 +00:00
|
|
|
//
|
|
|
|
// LCD / Controller
|
|
|
|
//
|
2015-07-31 05:11:19 +00:00
|
|
|
#if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
|
2015-03-01 09:16:55 +00:00
|
|
|
|
2015-07-31 23:40:50 +00:00
|
|
|
#define SD_DETECT_PIN 6
|
2015-03-01 09:16:55 +00:00
|
|
|
|
2015-03-02 09:49:45 +00:00
|
|
|
#endif // NEWPANEL && ULTRA_LCD
|