Prevent BOARD_NAME conflict with env

2.0.x
Scott Lahteine 5 years ago
parent 33f6d77281
commit 0cc524b84f

@ -165,7 +165,7 @@ void menu_info_thermistors() {
void menu_info_board() { void menu_info_board() {
if (ui.use_click()) return ui.goto_previous_screen(); if (ui.use_click()) return ui.goto_previous_screen();
START_SCREEN(); START_SCREEN();
STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController STATIC_ITEM(BOARD_INFO_NAME, true, true); // MyPrinterController
STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000 STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0 STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
STATIC_ITEM(MSG_INFO_PSU ": " PSU_NAME, true); STATIC_ITEM(MSG_INFO_PSU ": " PSU_NAME, true);

@ -29,7 +29,7 @@
"Oops! Select an ESP32 board in 'Tools > Board.'" "Oops! Select an ESP32 board in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Espressif ESP32" #define BOARD_INFO_NAME "Espressif ESP32"
// //
// I2S (steppers & other output-only pins) // I2S (steppers & other output-only pins)

@ -45,8 +45,8 @@
* 7 | 11 * 7 | 11
*/ */
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "RAMPS 1.4" #define BOARD_INFO_NAME "RAMPS 1.4"
#endif #endif
#define E2END 0xFFF // 4KB #define E2END 0xFFF // 4KB

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "AZSMZ MINI" #define BOARD_INFO_NAME "AZSMZ MINI"
// //
// Servos // Servos

@ -25,7 +25,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "BIGTREE SKR 1.1" #define BOARD_INFO_NAME "BIGTREE SKR 1.1"
// //
// Limit Switches // Limit Switches

@ -25,7 +25,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "BIGTREE SKR 1.3" #define BOARD_INFO_NAME "BIGTREE SKR 1.3"
// Ignore temp readings during development. // Ignore temp readings during development.
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000 //#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000

@ -34,8 +34,8 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "BIQU Thunder B300 V1.0" #define BOARD_INFO_NAME "BIQU Thunder B300 V1.0"
#endif #endif
// //

@ -34,7 +34,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "BIQU BQ111-A4" #define BOARD_INFO_NAME "BIQU BQ111-A4"
// //
// Limit Switches // Limit Switches

@ -25,7 +25,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "GMARSH X6 REV1" #define BOARD_INFO_NAME "GMARSH X6 REV1"
// Ignore temp readings during develpment. // Ignore temp readings during develpment.
//#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE //#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE

@ -29,8 +29,8 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "MKS SBASE" #define BOARD_INFO_NAME "MKS SBASE"
#endif #endif
#ifndef BOARD_WEBSITE_URL #ifndef BOARD_WEBSITE_URL
#define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SBASE" #define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SBASE"

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "MKS SGen-L" #define BOARD_INFO_NAME "MKS SGen-L"
#define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SGEN_L" #define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SGEN_L"
// //

@ -40,7 +40,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Re-ARM RAMPS 1.4" #define BOARD_INFO_NAME "Re-ARM RAMPS 1.4"
// //
// Servos // Servos

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1768 environment selected in your IDE." #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Selena Compact" #define BOARD_INFO_NAME "Selena Compact"
#define BOARD_WEBSITE_URL "https://github.com/Ales2-k/Selena" #define BOARD_WEBSITE_URL "https://github.com/Ales2-k/Selena"
// //

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Azteeg X5 GT" #define BOARD_INFO_NAME "Azteeg X5 GT"
#define BOARD_WEBSITE_URL "https://tinyurl.com/yx8tdqa3" #define BOARD_WEBSITE_URL "https://tinyurl.com/yx8tdqa3"
// //

@ -29,8 +29,8 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "Azteeg X5 MINI" #define BOARD_INFO_NAME "Azteeg X5 MINI"
#endif #endif
#define BOARD_WEBSITE_URL "http://www.panucatt.com/azteeg_X5_mini_reprap_3d_printer_controller_p/ax5mini.htm" #define BOARD_WEBSITE_URL "http://www.panucatt.com/azteeg_X5_mini_reprap_3d_printer_controller_p/ax5mini.htm"

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Azteeg X5 MINI WIFI" #define BOARD_INFO_NAME "Azteeg X5 MINI WIFI"
// //
// DIGIPOT slave addresses // DIGIPOT slave addresses

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Cohesion3D Mini" #define BOARD_INFO_NAME "Cohesion3D Mini"
// //
// Servos // Servos

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Cohesion3D ReMix" #define BOARD_INFO_NAME "Cohesion3D ReMix"
// //
// Servos // Servos

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "MKS SGen" #define BOARD_INFO_NAME "MKS SGen"
#define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SGEN" #define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SGEN"
#include "../lpc1768/pins_MKS_SBASE.h" #include "../lpc1768/pins_MKS_SBASE.h"

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "Smoothieboard" #define BOARD_INFO_NAME "Smoothieboard"
#define BOARD_WEBSITE_URL "http://smoothieware.org/smoothieboard" #define BOARD_WEBSITE_URL "http://smoothieware.org/smoothieboard"
// //

@ -29,7 +29,7 @@
#error "Oops! Make sure you have the LPC1769 environment selected in your IDE." #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
#endif #endif
#define BOARD_NAME "TH3D EZBoard" #define BOARD_INFO_NAME "TH3D EZBoard"
#define BOARD_WEBSITE_URL "https://www.th3dstudio.com/product/ezboard-lite/" #define BOARD_WEBSITE_URL "https://www.th3dstudio.com/product/ezboard-lite/"
// //

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Cheaptronic v1.0" #define BOARD_INFO_NAME "Cheaptronic v1.0"
// //
// Limit Switches // Limit Switches
// //

@ -31,7 +31,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Cheaptronic v2.0" #define BOARD_INFO_NAME "Cheaptronic v2.0"
// //
// Limit Switches // Limit Switches

@ -6,7 +6,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "CN Controls V11" #define BOARD_INFO_NAME "CN Controls V11"
// //
// Limit Switches // Limit Switches

@ -6,7 +6,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "CN Controls V12" #define BOARD_INFO_NAME "CN Controls V12"
// //
// Limit Switches // Limit Switches

@ -6,7 +6,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "CN Controls V15" #define BOARD_INFO_NAME "CN Controls V15"
// //
// Servos // Servos

@ -30,7 +30,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Einstart-S" #define BOARD_INFO_NAME "Einstart-S"
// //
// Limit Switches // Limit Switches

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Elefu Ra v3" #define BOARD_INFO_NAME "Elefu Ra v3"
// //
// Limit Switches // Limit Switches

@ -31,8 +31,8 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "GT2560 Rev.A" #define BOARD_INFO_NAME "GT2560 Rev.A"
#endif #endif
#define DEFAULT_MACHINE_NAME "Prusa i3 Pro B" #define DEFAULT_MACHINE_NAME "Prusa i3 Pro B"

@ -25,7 +25,7 @@
* Geeetech GT2560 Revision A+ board pin assignments * Geeetech GT2560 Revision A+ board pin assignments
*/ */
#define BOARD_NAME "GT2560 Rev.A+" #define BOARD_INFO_NAME "GT2560 Rev.A+"
#include "pins_GT2560_REV_A.h" #include "pins_GT2560_REV_A.h"

@ -29,8 +29,8 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "GT2560 V3.0" #define BOARD_INFO_NAME "GT2560 V3.0"
#endif #endif
// //

@ -25,7 +25,7 @@
* GT2560 V3.0 pin assignment (for Mecreator 2) * GT2560 V3.0 pin assignment (for Mecreator 2)
*****************************************************************/ *****************************************************************/
#define BOARD_NAME "GT2560 V3.0 (MC2)" #define BOARD_INFO_NAME "GT2560 V3.0 (MC2)"
#define X_MIN_PIN 22 #define X_MIN_PIN 22
#define X_MAX_PIN 24 #define X_MAX_PIN 24

@ -29,7 +29,7 @@
#error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Leapfrog" #define BOARD_INFO_NAME "Leapfrog"
// //
// Limit Switches // Limit Switches

@ -31,7 +31,7 @@
#error "Mega Controller supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Mega Controller supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Mega Controller" #define BOARD_INFO_NAME "Mega Controller"
// //
// Servos // Servos

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Megatronics" #define BOARD_INFO_NAME "Megatronics"
// //
// Limit Switches // Limit Switches
// //

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Megatronics v2.0" #define BOARD_INFO_NAME "Megatronics v2.0"
// //
// Limit Switches // Limit Switches
// //

@ -30,11 +30,11 @@
#endif #endif
#if MB(MEGATRONICS_32) #if MB(MEGATRONICS_32)
#define BOARD_NAME "Megatronics v3.2" #define BOARD_INFO_NAME "Megatronics v3.2"
#elif MB(MEGATRONICS_31) #elif MB(MEGATRONICS_31)
#define BOARD_NAME "Megatronics v3.1" #define BOARD_INFO_NAME "Megatronics v3.1"
#else #else
#define BOARD_NAME "Megatronics v3.0" #define BOARD_INFO_NAME "Megatronics v3.0"
#endif #endif
// //

@ -41,7 +41,7 @@
#error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Mightyboard" #define BOARD_INFO_NAME "Mightyboard"
#define DEFAULT_MACHINE_NAME "MB Replicator" #define DEFAULT_MACHINE_NAME "MB Replicator"
// //

@ -38,7 +38,7 @@
#error "Minitronics supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Minitronics supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Minitronics v1.0/1.1" #define BOARD_INFO_NAME "Minitronics v1.0/1.1"
// //
// Limit Switches // Limit Switches
// //

@ -31,8 +31,8 @@
#error "Overlord Controller supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Overlord Controller supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "OVERLORD" #define BOARD_INFO_NAME "OVERLORD"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
// //
// Limit Switches // Limit Switches

@ -25,7 +25,7 @@
#error "Oops! Select 'Silvergate' in 'Tools > Board.'" #error "Oops! Select 'Silvergate' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Silver Gate" #define BOARD_INFO_NAME "Silver Gate"
#define X_STEP_PIN 43 #define X_STEP_PIN 43
#define X_DIR_PIN 44 #define X_DIR_PIN 44

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Wanhao i3 Mini 0ne+" #define BOARD_INFO_NAME "Wanhao i3 Mini 0ne+"
#define DEFAULT_MACHINE_NAME "i3 Mini" #define DEFAULT_MACHINE_NAME "i3 Mini"
#define BOARD_WEBSITE_URL "https://tinyurl.com/yyxw7se7" #define BOARD_WEBSITE_URL "https://tinyurl.com/yyxw7se7"

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino Mega 2560 or Rambo' in 'Tools > Board.'" #error "Oops! Select 'Arduino Mega 2560 or Rambo' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Einsy Rambo" #define BOARD_INFO_NAME "Einsy Rambo"
// //
// TMC2130 Configuration_adv defaults for EinsyRambo // TMC2130 Configuration_adv defaults for EinsyRambo

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino Mega 2560 or Rambo' in 'Tools > Board.'" #error "Oops! Select 'Arduino Mega 2560 or Rambo' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Einsy Retro" #define BOARD_INFO_NAME "Einsy Retro"
// //
// TMC2130 Configuration_adv defaults for EinsyRetro // TMC2130 Configuration_adv defaults for EinsyRetro

@ -30,9 +30,9 @@
#endif #endif
#if MB(MINIRAMBO_10A) #if MB(MINIRAMBO_10A)
#define BOARD_NAME "Mini RAMBo 1.0a" #define BOARD_INFO_NAME "Mini RAMBo 1.0a"
#else #else
#define BOARD_NAME "Mini RAMBo" #define BOARD_INFO_NAME "Mini RAMBo"
#endif #endif
// //

@ -45,7 +45,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Rambo" #define BOARD_INFO_NAME "Rambo"
// //
// Servos // Servos

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Scoovo X9H" #define BOARD_INFO_NAME "Scoovo X9H"
// //
// Servos // Servos

@ -25,12 +25,12 @@
* 3DRAG (and K8200 / K8400) Arduino Mega with RAMPS v1.4 pin assignments * 3DRAG (and K8200 / K8400) Arduino Mega with RAMPS v1.4 pin assignments
*/ */
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "3Drag" #define BOARD_INFO_NAME "3Drag"
#endif #endif
#ifndef DEFAULT_MACHINE_NAME #ifndef DEFAULT_MACHINE_NAME
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
#endif #endif
#ifndef DEFAULT_SOURCE_CODE_URL #ifndef DEFAULT_SOURCE_CODE_URL

@ -34,7 +34,7 @@
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT) #if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT)
#define CASE_LIGHT_PIN 6 // Define before RAMPS pins include #define CASE_LIGHT_PIN 6 // Define before RAMPS pins include
#endif #endif
#define BOARD_NAME "Azteeg X3" #define BOARD_INFO_NAME "Azteeg X3"
// //
// Servos // Servos

@ -31,7 +31,7 @@
#error "Azteeg X3 Pro supports up to 5 hotends / E-steppers. Comment out this line to continue." #error "Azteeg X3 Pro supports up to 5 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Azteeg X3 Pro" #define BOARD_INFO_NAME "Azteeg X3 Pro"
// //
// RAMPS pins overrides // RAMPS pins overrides

@ -29,7 +29,7 @@
#error "2PrintBeta Due supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "2PrintBeta Due supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "2PrintBeta Due" #define BOARD_INFO_NAME "2PrintBeta Due"
// //
// M3/M4/M5 - Spindle/Laser Control // M3/M4/M5 - Spindle/Laser Control

@ -29,7 +29,7 @@
#error "KFB 2.0 supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "KFB 2.0 supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "KFB 2.0" #define BOARD_INFO_NAME "KFB 2.0"
// //
// Heaters / Fans // Heaters / Fans

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "ZUM Mega 3D" #define BOARD_INFO_NAME "ZUM Mega 3D"
// //
// Heaters / Fans // Heaters / Fans

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Duplicator i3 Plus" #define BOARD_INFO_NAME "Duplicator i3 Plus"
// //
// Limit Switches // Limit Switches

@ -29,7 +29,7 @@
#error "Felix 2.0+ supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Felix 2.0+ supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Felix 2.0+" #define BOARD_INFO_NAME "Felix 2.0+"
// //
// Heaters / Fans // Heaters / Fans

@ -31,8 +31,8 @@
#error "Formbot supports up to 3 hotends / E-steppers. Comment out this line to continue." #error "Formbot supports up to 3 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Formbot Raptor" #define BOARD_INFO_NAME "Formbot Raptor"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
// //
// Servos // Servos

@ -25,8 +25,8 @@
* Formbot Raptor 2 pin assignments * Formbot Raptor 2 pin assignments
*/ */
#define BOARD_NAME "Formbot Raptor2" #define BOARD_INFO_NAME "Formbot Raptor2"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
#define FAN_PIN 6 #define FAN_PIN 6

@ -31,8 +31,8 @@
#error "Formbot supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Formbot supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Formbot" #define BOARD_INFO_NAME "Formbot"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
// //
// Servos // Servos

@ -31,8 +31,8 @@
#error "Formbot supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Formbot supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Formbot" #define BOARD_INFO_NAME "Formbot"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
// //
// Servos // Servos

@ -33,7 +33,7 @@
//#error "SD_DETECT_INVERTED must be disabled for the FYSETC_F6_13 board." //#error "SD_DETECT_INVERTED must be disabled for the FYSETC_F6_13 board."
#endif #endif
#define BOARD_NAME "FYSETC F6 1.3" #define BOARD_INFO_NAME "FYSETC F6 1.3"
#define RESET_PIN 30 #define RESET_PIN 30
#define SPI_FLASH_CS 83 #define SPI_FLASH_CS 83

@ -26,7 +26,7 @@
* Identical to 3DRAG * Identical to 3DRAG
*/ */
#define BOARD_NAME "Velleman K8200" #define BOARD_INFO_NAME "Velleman K8200"
#define DEFAULT_MACHINE_NAME "K8200" #define DEFAULT_MACHINE_NAME "K8200"
#define DEFAULT_SOURCE_CODE_URL "https://github.com/CONSULitAS/Marlin-K8200" #define DEFAULT_SOURCE_CODE_URL "https://github.com/CONSULitAS/Marlin-K8200"

@ -32,7 +32,7 @@
* - Second heater has moved pin * - Second heater has moved pin
*/ */
#define BOARD_NAME "K8400" #define BOARD_INFO_NAME "K8400"
#define DEFAULT_MACHINE_NAME "Vertex" #define DEFAULT_MACHINE_NAME "Vertex"
#include "pins_3DRAG.h" #include "pins_3DRAG.h"

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "K8800" #define BOARD_INFO_NAME "K8800"
#define DEFAULT_MACHINE_NAME "Vertex Delta" #define DEFAULT_MACHINE_NAME "Vertex Delta"
//#define LCD_SCREEN_ROT_180 //#define LCD_SCREEN_ROT_180

@ -21,7 +21,7 @@
*/ */
#pragma once #pragma once
#define BOARD_NAME "MAKEboard Mini" #define BOARD_INFO_NAME "MAKEboard Mini"
// //
// Only 3 Limit Switch plugs on Micromake C1 // Only 3 Limit Switch plugs on Micromake C1

@ -31,7 +31,7 @@
#error "MKS BASE 1.0 supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "MKS BASE 1.0 supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "MKS BASE 1.0" #define BOARD_INFO_NAME "MKS BASE 1.0"
// //
// Heaters / Fans // Heaters / Fans

@ -29,7 +29,7 @@
#error "MKS BASE 1.4 only supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "MKS BASE 1.4 only supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "MKS BASE 1.4" #define BOARD_INFO_NAME "MKS BASE 1.4"
// //
// Heaters / Fans // Heaters / Fans

@ -34,7 +34,7 @@
#error "MKS GEN 1.3/1.4 supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "MKS GEN 1.3/1.4 supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "MKS GEN >= v1.3" #define BOARD_INFO_NAME "MKS GEN >= v1.3"
// //
// Heaters / Fans // Heaters / Fans

@ -29,7 +29,7 @@
#error "MKS GEN L supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "MKS GEN L supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "MKS GEN L" #define BOARD_INFO_NAME "MKS GEN L"
// //
// Heaters / Fans // Heaters / Fans

@ -57,8 +57,8 @@
#endif #endif
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "RAMPS 1.4" #define BOARD_INFO_NAME "RAMPS 1.4"
#endif #endif
// //

@ -34,8 +34,8 @@
* *
*/ */
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "RAMPS 1.3" #define BOARD_INFO_NAME "RAMPS 1.3"
#endif #endif
#define IS_RAMPS_13 #define IS_RAMPS_13

@ -25,7 +25,7 @@
#error "Creality3D RAMPS supports only 2 hotends / E-steppers. Comment out this line to continue." #error "Creality3D RAMPS supports only 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Creality3D RAMPS" #define BOARD_INFO_NAME "Creality3D RAMPS"
// //
// Heaters / Fans // Heaters / Fans

@ -25,7 +25,7 @@
#error "Dagoma3D F5 RAMPS supports only 2 hotends / E-steppers. Comment out this line to continue." #error "Dagoma3D F5 RAMPS supports only 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Dagoma3D F5 RAMPS" #define BOARD_INFO_NAME "Dagoma3D F5 RAMPS"
#define X_STOP_PIN 2 #define X_STOP_PIN 2
#define Y_STOP_PIN 3 #define Y_STOP_PIN 3

@ -25,7 +25,7 @@
#error "Ender-4 supports only 1 hotend / E-stepper. Comment out this line to continue." #error "Ender-4 supports only 1 hotend / E-stepper. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Ender-4" #define BOARD_INFO_NAME "Ender-4"
#include "pins_RAMPS.h" #include "pins_RAMPS.h"

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "RAMPS <1.2" #define BOARD_INFO_NAME "RAMPS <1.2"
// Uncomment the following line for RAMPS v1.0 // Uncomment the following line for RAMPS v1.0
//#define RAMPS_V_1_0 //#define RAMPS_V_1_0

@ -42,7 +42,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "RAMPS 1.4 Plus" #define BOARD_INFO_NAME "RAMPS 1.4 Plus"
#define RAMPS_D8_PIN 10 #define RAMPS_D8_PIN 10
#define RAMPS_D10_PIN 8 #define RAMPS_D10_PIN 8

@ -25,8 +25,8 @@
* RIGIDBOARD Arduino Mega with RAMPS v1.4 pin assignments * RIGIDBOARD Arduino Mega with RAMPS v1.4 pin assignments
*/ */
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "RigidBoard" #define BOARD_INFO_NAME "RigidBoard"
#endif #endif
// //

@ -25,7 +25,7 @@
* RIGIDBOARD V2 Arduino Mega with RAMPS v1.4 pin assignments * RIGIDBOARD V2 Arduino Mega with RAMPS v1.4 pin assignments
*/ */
#define BOARD_NAME "RigidBoard V2" #define BOARD_INFO_NAME "RigidBoard V2"
#include "pins_RIGIDBOARD.h" #include "pins_RIGIDBOARD.h"

@ -26,7 +26,7 @@
* extruder motors due to dual Z motors. Pinout therefore based on pins_RUMBA.h. * extruder motors due to dual Z motors. Pinout therefore based on pins_RUMBA.h.
*/ */
#define BOARD_NAME "RL200" #define BOARD_INFO_NAME "RL200"
#define DEFAULT_MACHINE_NAME "Rapide Lite 200" #define DEFAULT_MACHINE_NAME "Rapide Lite 200"
#if HOTENDS > 2 || E_STEPPERS > 2 #if HOTENDS > 2 || E_STEPPERS > 2

@ -31,11 +31,11 @@
#error "RUMBA supports up to 3 hotends / E-steppers. Comment out this line to continue." #error "RUMBA supports up to 3 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "Rumba" #define BOARD_INFO_NAME "Rumba"
#endif #endif
#ifndef DEFAULT_MACHINE_NAME #ifndef DEFAULT_MACHINE_NAME
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
#endif #endif
// //

@ -21,7 +21,7 @@
*/ */
#pragma once #pragma once
#define BOARD_NAME "Raise3D Rumba" #define BOARD_INFO_NAME "Raise3D Rumba"
#define DEFAULT_MACHINE_NAME "Raise3D N Series" #define DEFAULT_MACHINE_NAME "Raise3D N Series"
// Raise3D uses thermocouples on the standard input pins // Raise3D uses thermocouples on the standard input pins

@ -29,7 +29,7 @@
#error "Sainsmart 2-in-1 supports up to 2 hotends / E-steppers. Comment out this line to continue." #error "Sainsmart 2-in-1 supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "Sainsmart" #define BOARD_INFO_NAME "Sainsmart"
// //
// Heaters / Fans // Heaters / Fans

@ -25,7 +25,7 @@
* Arduino Mega with RAMPS v1.3 for Anycubic * Arduino Mega with RAMPS v1.3 for Anycubic
*/ */
#define BOARD_NAME "Anycubic RAMPS 1.3" #define BOARD_INFO_NAME "Anycubic RAMPS 1.3"
#define IS_RAMPS_EFB #define IS_RAMPS_EFB
#define RAMPS_D9_PIN 44 #define RAMPS_D9_PIN 44

@ -25,7 +25,7 @@
* Arduino Mega with RAMPS v1.4 for Anycubic * Arduino Mega with RAMPS v1.4 for Anycubic
*/ */
#define BOARD_NAME "Anycubic RAMPS 1.4" #define BOARD_INFO_NAME "Anycubic RAMPS 1.4"
// //
// Servos // Servos

@ -31,7 +31,7 @@
#error "TRONXY-V3-1.0 supports only 2 hotends/E-steppers. Comment out this line to continue." #error "TRONXY-V3-1.0 supports only 2 hotends/E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "TRONXY-V3-1.0" #define BOARD_INFO_NAME "TRONXY-V3-1.0"
// //
// Servos // Servos

@ -28,8 +28,8 @@
#error "TTOSCAR supports up to 5 hotends / E-steppers. Comment out this line to continue." #error "TTOSCAR supports up to 5 hotends / E-steppers. Comment out this line to continue."
#endif #endif
#define BOARD_NAME "TT OSCAR" #define BOARD_INFO_NAME "TT OSCAR"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
// //
// Servos // Servos

@ -37,7 +37,7 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Ultimaker 2.x" #define BOARD_INFO_NAME "Ultimaker 2.x"
#define DEFAULT_MACHINE_NAME "Ultimaker" #define DEFAULT_MACHINE_NAME "Ultimaker"
#define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin" #define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin"

@ -37,8 +37,8 @@
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Ultimaker" #define BOARD_INFO_NAME "Ultimaker"
#define DEFAULT_MACHINE_NAME BOARD_NAME #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
#define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin" #define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin"
// //

@ -36,7 +36,7 @@
* the revisions provided inconsistent information. * the revisions provided inconsistent information.
* *
* As best I can determine: * As best I can determine:
* 1.5.3 boards should use the pins_ULTIMAKER.h file which means the BOARD_NAME * 1.5.3 boards should use the pins_ULTIMAKER.h file which means the BOARD_INFO_NAME
* define in this file should say 1.5.3 rather than 1.5.4 * define in this file should say 1.5.3 rather than 1.5.4
* This file is meant for 1.1 - 1.3 boards. * This file is meant for 1.1 - 1.3 boards.
* The endstops for the 1.0 boards use different definitions than on the 1.1 - 1.3 * The endstops for the 1.0 boards use different definitions than on the 1.1 - 1.3
@ -65,13 +65,13 @@
#endif #endif
#ifdef BOARD_REV_1_1_TO_1_3 #ifdef BOARD_REV_1_1_TO_1_3
#define BOARD_NAME "Ultimaker 1.1-1.3" #define BOARD_INFO_NAME "Ultimaker 1.1-1.3"
#elif defined(BOARD_REV_1_0) #elif defined(BOARD_REV_1_0)
#define BOARD_NAME "Ultimaker 1.0" #define BOARD_INFO_NAME "Ultimaker 1.0"
#elif defined(BOARD_REV_1_5) #elif defined(BOARD_REV_1_5)
#define BOARD_NAME "Ultimaker 1.5" #define BOARD_INFO_NAME "Ultimaker 1.5"
#else #else
#define BOARD_NAME "Ultimaker 1.5.4+" #define BOARD_INFO_NAME "Ultimaker 1.5.4+"
#endif #endif
#define DEFAULT_MACHINE_NAME "Ultimaker" #define DEFAULT_MACHINE_NAME "Ultimaker"
#define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin" #define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin"

@ -26,7 +26,7 @@
* See https://github.com/mzbotreprap/VORON/blob/master/Firmware/Marlin/pins_RAMPS_VORON.h * See https://github.com/mzbotreprap/VORON/blob/master/Firmware/Marlin/pins_RAMPS_VORON.h
*/ */
#define BOARD_NAME "VORON Design v2" #define BOARD_INFO_NAME "VORON Design v2"
#define RAMPS_D8_PIN 11 #define RAMPS_D8_PIN 11

@ -31,7 +31,7 @@
#error "Z-Bolt X Series board supports up to 4 hotends / E-steppers." #error "Z-Bolt X Series board supports up to 4 hotends / E-steppers."
#endif #endif
#define BOARD_NAME "Z-Bolt X Series" #define BOARD_INFO_NAME "Z-Bolt X Series"
// //
// Servos // Servos

@ -25,7 +25,7 @@
* Arduino DUE Shield Kit (ADSK) pin assignments * Arduino DUE Shield Kit (ADSK) pin assignments
*/ */
#define BOARD_NAME "ADSK" #define BOARD_INFO_NAME "ADSK"
#if !defined(__SAM3X8E__) && !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__) #if !defined(__SAM3X8E__) && !defined(__AVR_ATmega1280__) && !defined(__AVR_ATmega2560__)
#error "Oops! Select 'Arduino Due or Mega' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due or Mega' in 'Tools > Board.'"

@ -30,7 +30,7 @@
#error "Oops! Select 'Arduino Due' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Alligator Board R2" #define BOARD_INFO_NAME "Alligator Board R2"
// //
// Servos // Servos

@ -41,7 +41,7 @@
#error "Oops! Select 'Archim' in 'Tools > Board.'" #error "Oops! Select 'Archim' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "Archim 1.0" #define BOARD_INFO_NAME "Archim 1.0"
// //
// Items marked * have been altered from Archim v1.0 // Items marked * have been altered from Archim v1.0

@ -43,7 +43,7 @@
#error "Archim2 requires Software SPI. Enable TMC_USE_SW_SPI in Configuration_adv.h." #error "Archim2 requires Software SPI. Enable TMC_USE_SW_SPI in Configuration_adv.h."
#endif #endif
#define BOARD_NAME "Archim 2.0" #define BOARD_INFO_NAME "Archim 2.0"
// //
// Items marked * have been altered from Archim v1.0 // Items marked * have been altered from Archim v1.0

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino Due' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "DUE3DOM" #define BOARD_INFO_NAME "DUE3DOM"
// //
// Servos // Servos

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino Due' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "DUE3DOM MINI" #define BOARD_INFO_NAME "DUE3DOM MINI"
// //
// Servos // Servos

@ -29,8 +29,8 @@
#error "Oops! Select 'Arduino Due' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
#endif #endif
#ifndef BOARD_NAME #ifndef BOARD_INFO_NAME
#define BOARD_NAME "PRINTRBOARD_G2" #define BOARD_INFO_NAME "PRINTRBOARD_G2"
#endif #endif
// //

@ -29,7 +29,7 @@
#error "Oops! Select 'Arduino Due' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "RADDS" #define BOARD_INFO_NAME "RADDS"
// //
// Servos // Servos

@ -43,7 +43,7 @@
#error "Oops! Select 'Arduino Due' or 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' or 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "RAMPS4DUE" #define BOARD_INFO_NAME "RAMPS4DUE"
#define IS_RAMPS4DUE #define IS_RAMPS4DUE
// //

@ -47,7 +47,7 @@
#error "Oops! Select 'Arduino Due' or 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'" #error "Oops! Select 'Arduino Due' or 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
#endif #endif
#define BOARD_NAME "RAMPS Duo" #define BOARD_INFO_NAME "RAMPS Duo"
#define IS_RAMPS_DUO #define IS_RAMPS_DUO
#include "pins_RAMPS.h" #include "pins_RAMPS.h"

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save