Prevent BOARD_NAME conflict with env
This commit is contained in:
		@@ -165,7 +165,7 @@ void menu_info_thermistors() {
 | 
			
		||||
void menu_info_board() {
 | 
			
		||||
  if (ui.use_click()) return ui.goto_previous_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_PROTOCOL ": " PROTOCOL_VERSION, true);    // Protocol: 1.0
 | 
			
		||||
  STATIC_ITEM(MSG_INFO_PSU ": " PSU_NAME, true);
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  "Oops! Select an ESP32 board in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Espressif ESP32"
 | 
			
		||||
#define BOARD_INFO_NAME "Espressif ESP32"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// I2S (steppers & other output-only pins)
 | 
			
		||||
 
 | 
			
		||||
@@ -45,8 +45,8 @@
 | 
			
		||||
 *         7 | 11
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "RAMPS 1.4"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "RAMPS 1.4"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define E2END 0xFFF // 4KB
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "AZSMZ MINI"
 | 
			
		||||
#define BOARD_INFO_NAME "AZSMZ MINI"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Oops!  Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "BIGTREE SKR 1.1"
 | 
			
		||||
#define BOARD_INFO_NAME "BIGTREE SKR 1.1"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Oops!  Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "BIGTREE SKR 1.3"
 | 
			
		||||
#define BOARD_INFO_NAME "BIGTREE SKR 1.3"
 | 
			
		||||
 | 
			
		||||
// Ignore temp readings during development.
 | 
			
		||||
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
 | 
			
		||||
 
 | 
			
		||||
@@ -34,8 +34,8 @@
 | 
			
		||||
  #error "Oops!  Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "BIQU Thunder B300 V1.0"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "BIQU Thunder B300 V1.0"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -34,7 +34,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "BIQU BQ111-A4"
 | 
			
		||||
#define BOARD_INFO_NAME "BIQU BQ111-A4"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "GMARSH X6 REV1"
 | 
			
		||||
#define BOARD_INFO_NAME "GMARSH X6 REV1"
 | 
			
		||||
 | 
			
		||||
// Ignore temp readings during develpment.
 | 
			
		||||
//#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
 | 
			
		||||
 
 | 
			
		||||
@@ -29,8 +29,8 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME        "MKS SBASE"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME   "MKS SBASE"
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef BOARD_WEBSITE_URL
 | 
			
		||||
  #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."
 | 
			
		||||
#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"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -40,7 +40,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Re-ARM RAMPS 1.4"
 | 
			
		||||
#define BOARD_INFO_NAME "Re-ARM RAMPS 1.4"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1768 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME        "Selena Compact"
 | 
			
		||||
#define BOARD_INFO_NAME   "Selena Compact"
 | 
			
		||||
#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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME        "Azteeg X5 GT"
 | 
			
		||||
#define BOARD_INFO_NAME   "Azteeg X5 GT"
 | 
			
		||||
#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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME      "Azteeg X5 MINI"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "Azteeg X5 MINI"
 | 
			
		||||
#endif
 | 
			
		||||
#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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Azteeg X5 MINI WIFI"
 | 
			
		||||
#define BOARD_INFO_NAME "Azteeg X5 MINI WIFI"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// DIGIPOT slave addresses
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Cohesion3D Mini"
 | 
			
		||||
#define BOARD_INFO_NAME "Cohesion3D Mini"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Cohesion3D ReMix"
 | 
			
		||||
#define BOARD_INFO_NAME "Cohesion3D ReMix"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME        "MKS SGen"
 | 
			
		||||
#define BOARD_INFO_NAME   "MKS SGen"
 | 
			
		||||
#define BOARD_WEBSITE_URL "https://github.com/makerbase-mks/MKS-SGEN"
 | 
			
		||||
 | 
			
		||||
#include "../lpc1768/pins_MKS_SBASE.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME        "Smoothieboard"
 | 
			
		||||
#define BOARD_INFO_NAME   "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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME        "TH3D EZBoard"
 | 
			
		||||
#define BOARD_INFO_NAME   "TH3D EZBoard"
 | 
			
		||||
#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.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Cheaptronic v1.0"
 | 
			
		||||
#define BOARD_INFO_NAME "Cheaptronic v1.0"
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Cheaptronic v2.0"
 | 
			
		||||
#define BOARD_INFO_NAME "Cheaptronic v2.0"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "CN Controls V11"
 | 
			
		||||
#define BOARD_INFO_NAME "CN Controls V11"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "CN Controls V12"
 | 
			
		||||
#define BOARD_INFO_NAME "CN Controls V12"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "CN Controls V15"
 | 
			
		||||
#define BOARD_INFO_NAME "CN Controls V15"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -30,7 +30,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Einstart-S"
 | 
			
		||||
#define BOARD_INFO_NAME "Einstart-S"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Elefu Ra v3"
 | 
			
		||||
#define BOARD_INFO_NAME "Elefu Ra v3"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,8 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "GT2560 Rev.A"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "GT2560 Rev.A"
 | 
			
		||||
#endif
 | 
			
		||||
#define DEFAULT_MACHINE_NAME "Prusa i3 Pro B"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
 * 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"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -29,8 +29,8 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "GT2560 V3.0"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "GT2560 V3.0"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
 * 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_MAX_PIN          24
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Leapfrog"
 | 
			
		||||
#define BOARD_INFO_NAME "Leapfrog"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,7 @@
 | 
			
		||||
  #error "Mega Controller supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Mega Controller"
 | 
			
		||||
#define BOARD_INFO_NAME "Mega Controller"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Megatronics"
 | 
			
		||||
#define BOARD_INFO_NAME "Megatronics"
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Megatronics v2.0"
 | 
			
		||||
#define BOARD_INFO_NAME "Megatronics v2.0"
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -30,11 +30,11 @@
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if MB(MEGATRONICS_32)
 | 
			
		||||
  #define BOARD_NAME "Megatronics v3.2"
 | 
			
		||||
  #define BOARD_INFO_NAME "Megatronics v3.2"
 | 
			
		||||
#elif MB(MEGATRONICS_31)
 | 
			
		||||
  #define BOARD_NAME "Megatronics v3.1"
 | 
			
		||||
  #define BOARD_INFO_NAME "Megatronics v3.1"
 | 
			
		||||
#else
 | 
			
		||||
  #define BOARD_NAME "Megatronics v3.0"
 | 
			
		||||
  #define BOARD_INFO_NAME "Megatronics v3.0"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -41,7 +41,7 @@
 | 
			
		||||
  #error "Oops! Select 'Mega 1280' or 'Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Mightyboard"
 | 
			
		||||
#define BOARD_INFO_NAME      "Mightyboard"
 | 
			
		||||
#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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Minitronics v1.0/1.1"
 | 
			
		||||
#define BOARD_INFO_NAME "Minitronics v1.0/1.1"
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,8 @@
 | 
			
		||||
  #error "Overlord Controller supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME              "OVERLORD"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME         "OVERLORD"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    BOARD_INFO_NAME
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Oops! Select 'Silvergate' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Silver Gate"
 | 
			
		||||
#define BOARD_INFO_NAME "Silver Gate"
 | 
			
		||||
 | 
			
		||||
#define X_STEP_PIN         43
 | 
			
		||||
#define X_DIR_PIN          44
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Wanhao i3 Mini 0ne+"
 | 
			
		||||
#define BOARD_INFO_NAME      "Wanhao i3 Mini 0ne+"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME "i3 Mini"
 | 
			
		||||
#define BOARD_WEBSITE_URL    "https://tinyurl.com/yyxw7se7"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Mega 2560 or Rambo' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Einsy Rambo"
 | 
			
		||||
#define BOARD_INFO_NAME "Einsy Rambo"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// TMC2130 Configuration_adv defaults for EinsyRambo
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Mega 2560 or Rambo' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Einsy Retro"
 | 
			
		||||
#define BOARD_INFO_NAME "Einsy Retro"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// TMC2130 Configuration_adv defaults for EinsyRetro
 | 
			
		||||
 
 | 
			
		||||
@@ -30,9 +30,9 @@
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if MB(MINIRAMBO_10A)
 | 
			
		||||
  #define BOARD_NAME "Mini RAMBo 1.0a"
 | 
			
		||||
  #define BOARD_INFO_NAME "Mini RAMBo 1.0a"
 | 
			
		||||
#else
 | 
			
		||||
  #define BOARD_NAME "Mini RAMBo"
 | 
			
		||||
  #define BOARD_INFO_NAME "Mini RAMBo"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -45,7 +45,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Rambo"
 | 
			
		||||
#define BOARD_INFO_NAME "Rambo"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Scoovo X9H"
 | 
			
		||||
#define BOARD_INFO_NAME "Scoovo X9H"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -25,12 +25,12 @@
 | 
			
		||||
 * 3DRAG (and K8200 / K8400) Arduino Mega with RAMPS v1.4 pin assignments
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "3Drag"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "3Drag"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef DEFAULT_MACHINE_NAME
 | 
			
		||||
  #define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
  #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef DEFAULT_SOURCE_CODE_URL
 | 
			
		||||
 
 | 
			
		||||
@@ -34,7 +34,7 @@
 | 
			
		||||
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT)
 | 
			
		||||
  #define CASE_LIGHT_PIN    6   // Define before RAMPS pins include
 | 
			
		||||
#endif
 | 
			
		||||
#define BOARD_NAME "Azteeg X3"
 | 
			
		||||
#define BOARD_INFO_NAME "Azteeg X3"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,7 @@
 | 
			
		||||
  #error "Azteeg X3 Pro supports up to 5 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Azteeg X3 Pro"
 | 
			
		||||
#define BOARD_INFO_NAME "Azteeg X3 Pro"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// RAMPS pins overrides
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "2PrintBeta Due supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "2PrintBeta Due"
 | 
			
		||||
#define BOARD_INFO_NAME "2PrintBeta Due"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// 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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "KFB 2.0"
 | 
			
		||||
#define BOARD_INFO_NAME "KFB 2.0"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "ZUM Mega 3D"
 | 
			
		||||
#define BOARD_INFO_NAME "ZUM Mega 3D"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Duplicator i3 Plus"
 | 
			
		||||
#define BOARD_INFO_NAME "Duplicator i3 Plus"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Limit Switches
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Felix 2.0+ supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Felix 2.0+"
 | 
			
		||||
#define BOARD_INFO_NAME "Felix 2.0+"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,8 @@
 | 
			
		||||
  #error "Formbot supports up to 3 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Formbot Raptor"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME      "Formbot Raptor"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -25,8 +25,8 @@
 | 
			
		||||
 * Formbot Raptor 2 pin assignments
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Formbot Raptor2"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME      "Formbot Raptor2"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
 | 
			
		||||
#define FAN_PIN             6
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,8 @@
 | 
			
		||||
  #error "Formbot supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Formbot"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME      "Formbot"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -31,8 +31,8 @@
 | 
			
		||||
  #error "Formbot supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Formbot"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME      "Formbot"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -33,7 +33,7 @@
 | 
			
		||||
  //#error "SD_DETECT_INVERTED must be disabled for the FYSETC_F6_13 board."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "FYSETC F6 1.3"
 | 
			
		||||
#define BOARD_INFO_NAME "FYSETC F6 1.3"
 | 
			
		||||
 | 
			
		||||
#define RESET_PIN          30
 | 
			
		||||
#define SPI_FLASH_CS       83
 | 
			
		||||
 
 | 
			
		||||
@@ -26,7 +26,7 @@
 | 
			
		||||
 * Identical to 3DRAG
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME              "Velleman K8200"
 | 
			
		||||
#define BOARD_INFO_NAME         "Velleman K8200"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    "K8200"
 | 
			
		||||
#define DEFAULT_SOURCE_CODE_URL "https://github.com/CONSULitAS/Marlin-K8200"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -32,7 +32,7 @@
 | 
			
		||||
 *  - Second heater has moved pin
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME              "K8400"
 | 
			
		||||
#define BOARD_INFO_NAME         "K8400"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    "Vertex"
 | 
			
		||||
 | 
			
		||||
#include "pins_3DRAG.h"
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "K8800"
 | 
			
		||||
#define BOARD_INFO_NAME      "K8800"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME "Vertex Delta"
 | 
			
		||||
 | 
			
		||||
//#define LCD_SCREEN_ROT_180
 | 
			
		||||
 
 | 
			
		||||
@@ -21,7 +21,7 @@
 | 
			
		||||
 */
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "MAKEboard Mini"
 | 
			
		||||
#define BOARD_INFO_NAME "MAKEboard Mini"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// 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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "MKS BASE 1.0"
 | 
			
		||||
#define BOARD_INFO_NAME "MKS BASE 1.0"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// 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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "MKS BASE 1.4"
 | 
			
		||||
#define BOARD_INFO_NAME "MKS BASE 1.4"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// 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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "MKS GEN >= v1.3"
 | 
			
		||||
#define BOARD_INFO_NAME "MKS GEN >= v1.3"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "MKS GEN L supports up to 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "MKS GEN L"
 | 
			
		||||
#define BOARD_INFO_NAME "MKS GEN L"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -57,8 +57,8 @@
 | 
			
		||||
  #endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "RAMPS 1.4"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "RAMPS 1.4"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -34,8 +34,8 @@
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "RAMPS 1.3"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "RAMPS 1.3"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define IS_RAMPS_13
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Creality3D RAMPS supports only 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Creality3D RAMPS"
 | 
			
		||||
#define BOARD_INFO_NAME "Creality3D RAMPS"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Dagoma3D F5 RAMPS supports only 2 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Dagoma3D F5 RAMPS"
 | 
			
		||||
#define BOARD_INFO_NAME "Dagoma3D F5 RAMPS"
 | 
			
		||||
 | 
			
		||||
#define X_STOP_PIN          2
 | 
			
		||||
#define Y_STOP_PIN          3
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
  #error "Ender-4 supports only 1 hotend / E-stepper. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Ender-4"
 | 
			
		||||
#define BOARD_INFO_NAME "Ender-4"
 | 
			
		||||
 | 
			
		||||
#include "pins_RAMPS.h"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "RAMPS <1.2"
 | 
			
		||||
#define BOARD_INFO_NAME "RAMPS <1.2"
 | 
			
		||||
 | 
			
		||||
// Uncomment the following line for RAMPS v1.0
 | 
			
		||||
//#define RAMPS_V_1_0
 | 
			
		||||
 
 | 
			
		||||
@@ -42,7 +42,7 @@
 | 
			
		||||
 #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "RAMPS 1.4 Plus"
 | 
			
		||||
#define BOARD_INFO_NAME "RAMPS 1.4 Plus"
 | 
			
		||||
 | 
			
		||||
#define RAMPS_D8_PIN  10
 | 
			
		||||
#define RAMPS_D10_PIN  8
 | 
			
		||||
 
 | 
			
		||||
@@ -25,8 +25,8 @@
 | 
			
		||||
 * RIGIDBOARD Arduino Mega with RAMPS v1.4 pin assignments
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "RigidBoard"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "RigidBoard"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
 * 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"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -26,7 +26,7 @@
 | 
			
		||||
 * 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"
 | 
			
		||||
 | 
			
		||||
#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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "Rumba"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "Rumba"
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef DEFAULT_MACHINE_NAME
 | 
			
		||||
  #define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
  #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -21,7 +21,7 @@
 | 
			
		||||
 */
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "Raise3D Rumba"
 | 
			
		||||
#define BOARD_INFO_NAME      "Raise3D Rumba"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME "Raise3D N Series"
 | 
			
		||||
 | 
			
		||||
// 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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Sainsmart"
 | 
			
		||||
#define BOARD_INFO_NAME "Sainsmart"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Heaters / Fans
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
 * 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 RAMPS_D9_PIN         44
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
 * Arduino Mega with RAMPS v1.4 for Anycubic
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Anycubic RAMPS 1.4"
 | 
			
		||||
#define BOARD_INFO_NAME "Anycubic RAMPS 1.4"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,7 @@
 | 
			
		||||
  #error "TRONXY-V3-1.0 supports only 2 hotends/E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "TRONXY-V3-1.0"
 | 
			
		||||
#define BOARD_INFO_NAME "TRONXY-V3-1.0"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -28,8 +28,8 @@
 | 
			
		||||
  #error "TTOSCAR supports up to 5 hotends / E-steppers. Comment out this line to continue."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME           "TT OSCAR"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME      "TT OSCAR"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -37,7 +37,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME              "Ultimaker 2.x"
 | 
			
		||||
#define BOARD_INFO_NAME         "Ultimaker 2.x"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    "Ultimaker"
 | 
			
		||||
#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.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME              "Ultimaker"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    BOARD_NAME
 | 
			
		||||
#define BOARD_INFO_NAME         "Ultimaker"
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    BOARD_INFO_NAME
 | 
			
		||||
#define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -36,7 +36,7 @@
 | 
			
		||||
 * the revisions provided inconsistent information.
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 *   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
 | 
			
		||||
@@ -65,13 +65,13 @@
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#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)
 | 
			
		||||
  #define BOARD_NAME            "Ultimaker 1.0"
 | 
			
		||||
  #define BOARD_INFO_NAME       "Ultimaker 1.0"
 | 
			
		||||
#elif defined(BOARD_REV_1_5)
 | 
			
		||||
  #define BOARD_NAME            "Ultimaker 1.5"
 | 
			
		||||
  #define BOARD_INFO_NAME       "Ultimaker 1.5"
 | 
			
		||||
#else
 | 
			
		||||
  #define BOARD_NAME            "Ultimaker 1.5.4+"
 | 
			
		||||
  #define BOARD_INFO_NAME       "Ultimaker 1.5.4+"
 | 
			
		||||
#endif
 | 
			
		||||
#define DEFAULT_MACHINE_NAME    "Ultimaker"
 | 
			
		||||
#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
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "VORON Design v2"
 | 
			
		||||
#define BOARD_INFO_NAME "VORON Design v2"
 | 
			
		||||
 | 
			
		||||
#define RAMPS_D8_PIN       11
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -31,7 +31,7 @@
 | 
			
		||||
  #error "Z-Bolt X Series board supports up to 4 hotends / E-steppers."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Z-Bolt X Series"
 | 
			
		||||
#define BOARD_INFO_NAME "Z-Bolt X Series"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@
 | 
			
		||||
 * 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__)
 | 
			
		||||
  #error "Oops! Select 'Arduino Due or Mega' in 'Tools > Board.'"
 | 
			
		||||
 
 | 
			
		||||
@@ -30,7 +30,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME         "Alligator Board R2"
 | 
			
		||||
#define BOARD_INFO_NAME    "Alligator Board R2"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -41,7 +41,7 @@
 | 
			
		||||
  #error "Oops! Select 'Archim' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Archim 1.0"
 | 
			
		||||
#define BOARD_INFO_NAME "Archim 1.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."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "Archim 2.0"
 | 
			
		||||
#define BOARD_INFO_NAME "Archim 2.0"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Items marked * have been altered from Archim v1.0
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "DUE3DOM"
 | 
			
		||||
#define BOARD_INFO_NAME "DUE3DOM"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "DUE3DOM MINI"
 | 
			
		||||
#define BOARD_INFO_NAME "DUE3DOM MINI"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -29,8 +29,8 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef BOARD_NAME
 | 
			
		||||
  #define BOARD_NAME "PRINTRBOARD_G2"
 | 
			
		||||
#ifndef BOARD_INFO_NAME
 | 
			
		||||
  #define BOARD_INFO_NAME "PRINTRBOARD_G2"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -29,7 +29,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "RADDS"
 | 
			
		||||
#define BOARD_INFO_NAME "RADDS"
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// Servos
 | 
			
		||||
 
 | 
			
		||||
@@ -43,7 +43,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' or 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "RAMPS4DUE"
 | 
			
		||||
#define BOARD_INFO_NAME "RAMPS4DUE"
 | 
			
		||||
#define IS_RAMPS4DUE
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
 
 | 
			
		||||
@@ -47,7 +47,7 @@
 | 
			
		||||
  #error "Oops! Select 'Arduino Due' or 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_NAME "RAMPS Duo"
 | 
			
		||||
#define BOARD_INFO_NAME "RAMPS Duo"
 | 
			
		||||
 | 
			
		||||
#define IS_RAMPS_DUO
 | 
			
		||||
#include "pins_RAMPS.h"
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user