Invariant Marlin bootscreen (#15057)
This commit is contained in:
parent
b2a4b6f34e
commit
3ac76f0489
127 changed files with 785 additions and 1065 deletions
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,10 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -386,6 +386,8 @@
|
||||||
#error "MKS_ROBIN_TFT is now FSMC_GRAPHICAL_TFT. Please update your configuration."
|
#error "MKS_ROBIN_TFT is now FSMC_GRAPHICAL_TFT. Please update your configuration."
|
||||||
#elif defined(SDPOWER)
|
#elif defined(SDPOWER)
|
||||||
#error "SDPOWER is now SDPOWER_PIN. Please update your configuration and/or pins."
|
#error "SDPOWER is now SDPOWER_PIN. Please update your configuration and/or pins."
|
||||||
|
#elif defined(STRING_SPLASH_LINE1) || defined(STRING_SPLASH_LINE2)
|
||||||
|
#error "STRING_SPLASH_LINE[12] are now obsolete. Please remove them from Configuration.h."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define BOARD_MKS_13 -1109
|
#define BOARD_MKS_13 -1109
|
||||||
|
|
|
@ -449,59 +449,28 @@ void MarlinUI::clear_lcd() { lcd.clear(); }
|
||||||
lcd_scroll(0, 3, PSTR(STRING), LCD_WIDTH, DELAY); \
|
lcd_scroll(0, 3, PSTR(STRING), LCD_WIDTH, DELAY); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef STRING_SPLASH_LINE1
|
//
|
||||||
|
// Show the Marlin logo with splash line 1
|
||||||
|
//
|
||||||
|
if (LCD_EXTRA_SPACE >= utf8_strlen(SHORT_BUILD_VERSION) + 1) {
|
||||||
//
|
//
|
||||||
// Show the Marlin logo with splash line 1
|
// Show the Marlin logo, splash line1, and splash line 2
|
||||||
//
|
//
|
||||||
if (LCD_EXTRA_SPACE >= utf8_strlen(STRING_SPLASH_LINE1) + 1) {
|
logo_lines(PSTR(" " SHORT_BUILD_VERSION));
|
||||||
//
|
CENTER_OR_SCROLL(MARLIN_WEBSITE_URL, 2000);
|
||||||
// Show the Marlin logo, splash line1, and splash line 2
|
}
|
||||||
//
|
else {
|
||||||
logo_lines(PSTR(" " STRING_SPLASH_LINE1));
|
|
||||||
#ifdef STRING_SPLASH_LINE2
|
|
||||||
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
|
|
||||||
#else
|
|
||||||
safe_delay(2000);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
//
|
|
||||||
// Show the Marlin logo with splash line 1
|
|
||||||
// After a delay show splash line 2, if it exists
|
|
||||||
//
|
|
||||||
#ifdef STRING_SPLASH_LINE2
|
|
||||||
#define _SPLASH_WAIT_1 1500
|
|
||||||
#else
|
|
||||||
#define _SPLASH_WAIT_1 2000
|
|
||||||
#endif
|
|
||||||
logo_lines(PSTR(""));
|
|
||||||
CENTER_OR_SCROLL(STRING_SPLASH_LINE1, _SPLASH_WAIT_1);
|
|
||||||
#ifdef STRING_SPLASH_LINE2
|
|
||||||
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 1500);
|
|
||||||
#ifdef STRING_SPLASH_LINE3
|
|
||||||
CENTER_OR_SCROLL(STRING_SPLASH_LINE3, 1500);
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
#elif defined(STRING_SPLASH_LINE2)
|
|
||||||
//
|
//
|
||||||
// Show splash line 2 only, alongside the logo if possible
|
// Show the Marlin logo and short build version
|
||||||
//
|
// After a delay show the website URL
|
||||||
if (LCD_EXTRA_SPACE >= utf8_strlen(STRING_SPLASH_LINE2) + 1) {
|
|
||||||
logo_lines(PSTR(" " STRING_SPLASH_LINE2));
|
|
||||||
safe_delay(2000);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
logo_lines(PSTR(""));
|
|
||||||
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
//
|
|
||||||
// Show only the Marlin logo
|
|
||||||
//
|
//
|
||||||
logo_lines(PSTR(""));
|
logo_lines(PSTR(""));
|
||||||
safe_delay(2000);
|
CENTER_OR_SCROLL(SHORT_BUILD_VERSION, 1500);
|
||||||
#endif
|
CENTER_OR_SCROLL(MARLIN_WEBSITE_URL, 1500);
|
||||||
|
#ifdef STRING_SPLASH_LINE3
|
||||||
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE3, 1500);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
lcd.clear();
|
lcd.clear();
|
||||||
safe_delay(100);
|
safe_delay(100);
|
||||||
|
@ -585,11 +554,13 @@ FORCE_INLINE void _draw_heater_status(const heater_ind_t heater, const char pref
|
||||||
|
|
||||||
FORCE_INLINE void _draw_bed_status(const bool blink) {
|
FORCE_INLINE void _draw_bed_status(const bool blink) {
|
||||||
_draw_heater_status(H_BED, (
|
_draw_heater_status(H_BED, (
|
||||||
#if HAS_LEVELING
|
#if HAS_LEVELING
|
||||||
planner.leveling_active && blink ? '_' :
|
planner.leveling_active && blink ? '_' :
|
||||||
#endif
|
#endif
|
||||||
LCD_STR_BEDTEMP[0]
|
LCD_STR_BEDTEMP[0]
|
||||||
), blink);
|
),
|
||||||
|
blink
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if HAS_PRINT_PROGRESS
|
#if HAS_PRINT_PROGRESS
|
||||||
|
|
|
@ -159,23 +159,17 @@ bool MarlinUI::detected() { return true; }
|
||||||
}
|
}
|
||||||
#endif // SHOW_CUSTOM_BOOTSCREEN
|
#endif // SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Draws a slice of the Marlin bootscreen, without the u8g loop
|
// Draw the static Marlin bootscreen from a u8g loop
|
||||||
void MarlinUI::draw_marlin_bootscreen() {
|
// or the animated boot screen within its own u8g loop
|
||||||
// Screen dimensions.
|
void MarlinUI::draw_marlin_bootscreen(const bool line2/*=false*/) {
|
||||||
//const u8g_uint_t width = u8g.getWidth(), height = u8g.getHeight();
|
|
||||||
constexpr u8g_uint_t width = LCD_PIXEL_WIDTH, height = LCD_PIXEL_HEIGHT;
|
|
||||||
|
|
||||||
// Determine text space needed
|
// Determine text space needed
|
||||||
#ifndef STRING_SPLASH_LINE2
|
constexpr u8g_uint_t text_width_1 = u8g_uint_t((sizeof(SHORT_BUILD_VERSION) - 1) * (MENU_FONT_WIDTH)),
|
||||||
constexpr u8g_uint_t text_total_height = MENU_FONT_HEIGHT,
|
text_width_2 = u8g_uint_t((sizeof(MARLIN_WEBSITE_URL) - 1) * (MENU_FONT_WIDTH)),
|
||||||
text_width_2 = 0;
|
|
||||||
#else
|
|
||||||
constexpr u8g_uint_t text_total_height = (MENU_FONT_HEIGHT) * 2,
|
|
||||||
text_width_2 = u8g_uint_t((sizeof(STRING_SPLASH_LINE2) - 1) * (MENU_FONT_WIDTH));
|
|
||||||
#endif
|
|
||||||
constexpr u8g_uint_t text_width_1 = u8g_uint_t((sizeof(STRING_SPLASH_LINE1) - 1) * (MENU_FONT_WIDTH)),
|
|
||||||
text_max_width = _MAX(text_width_1, text_width_2),
|
text_max_width = _MAX(text_width_1, text_width_2),
|
||||||
|
text_total_height = (MENU_FONT_HEIGHT) * 2,
|
||||||
|
width = LCD_PIXEL_WIDTH, height = LCD_PIXEL_HEIGHT,
|
||||||
rspace = width - (START_BMPWIDTH);
|
rspace = width - (START_BMPWIDTH);
|
||||||
|
constexpr bool two_part = (height - (START_BMPHEIGHT)) < ((MENU_FONT_ASCENT) * 2);
|
||||||
|
|
||||||
u8g_int_t offx, offy, txt_base, txt_offx_1, txt_offx_2;
|
u8g_int_t offx, offy, txt_base, txt_offx_1, txt_offx_2;
|
||||||
|
|
||||||
|
@ -189,8 +183,8 @@ bool MarlinUI::detected() { return true; }
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
constexpr int8_t inter = (height - text_total_height - (START_BMPHEIGHT)) / 3; // Evenly distribute vertical space
|
constexpr int8_t inter = (height - text_total_height - (START_BMPHEIGHT)) / 3; // Evenly distribute vertical space
|
||||||
offy = inter; // V-align boot logo proportionally
|
|
||||||
offx = rspace / 2; // Center the boot logo in the whole space
|
offx = rspace / 2; // Center the boot logo in the whole space
|
||||||
|
offy = inter; // V-align boot logo proportionally
|
||||||
txt_offx_1 = (width - text_width_1) / 2; // Text 1 centered
|
txt_offx_1 = (width - text_width_1) / 2; // Text 1 centered
|
||||||
txt_offx_2 = (width - text_width_2) / 2; // Text 2 centered
|
txt_offx_2 = (width - text_width_2) / 2; // Text 2 centered
|
||||||
txt_base = offy + START_BMPHEIGHT + offy + text_total_height - (MENU_FONT_DESCENT); // Even spacing looks best
|
txt_base = offy + START_BMPHEIGHT + offy + text_total_height - (MENU_FONT_DESCENT); // Even spacing looks best
|
||||||
|
@ -201,12 +195,8 @@ bool MarlinUI::detected() { return true; }
|
||||||
auto draw_bootscreen_bmp = [&](const uint8_t *bitmap) {
|
auto draw_bootscreen_bmp = [&](const uint8_t *bitmap) {
|
||||||
u8g.drawBitmapP(offx, offy, START_BMP_BYTEWIDTH, START_BMPHEIGHT, bitmap);
|
u8g.drawBitmapP(offx, offy, START_BMP_BYTEWIDTH, START_BMPHEIGHT, bitmap);
|
||||||
set_font(FONT_MENU);
|
set_font(FONT_MENU);
|
||||||
#ifndef STRING_SPLASH_LINE2
|
if (!two_part || !line2) lcd_put_u8str_P(txt_offx_1, txt_base - (MENU_FONT_HEIGHT), PSTR(SHORT_BUILD_VERSION));
|
||||||
lcd_put_u8str_P(txt_offx_1, txt_base, PSTR(STRING_SPLASH_LINE1));
|
if (!two_part || line2) lcd_put_u8str_P(txt_offx_2, txt_base, PSTR(MARLIN_WEBSITE_URL));
|
||||||
#else
|
|
||||||
lcd_put_u8str_P(txt_offx_1, txt_base - (MENU_FONT_HEIGHT), PSTR(STRING_SPLASH_LINE1));
|
|
||||||
lcd_put_u8str_P(txt_offx_2, txt_base, PSTR(STRING_SPLASH_LINE2));
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#if DISABLED(BOOT_MARLIN_LOGO_ANIMATED)
|
#if DISABLED(BOOT_MARLIN_LOGO_ANIMATED)
|
||||||
|
@ -229,9 +219,15 @@ bool MarlinUI::detected() { return true; }
|
||||||
#ifndef BOOTSCREEN_TIMEOUT
|
#ifndef BOOTSCREEN_TIMEOUT
|
||||||
#define BOOTSCREEN_TIMEOUT 2500
|
#define BOOTSCREEN_TIMEOUT 2500
|
||||||
#endif
|
#endif
|
||||||
u8g.firstPage();
|
for (uint8_t q = 2; q--;) {
|
||||||
do { draw_marlin_bootscreen(); } while (u8g.nextPage());
|
#if DISABLED(BOOT_MARLIN_LOGO_ANIMATED)
|
||||||
safe_delay(BOOTSCREEN_TIMEOUT);
|
u8g.firstPage();
|
||||||
|
do { draw_marlin_bootscreen(q == 0); } while (u8g.nextPage());
|
||||||
|
#else
|
||||||
|
draw_marlin_bootscreen(q == 0);
|
||||||
|
#endif
|
||||||
|
safe_delay((BOOTSCREEN_TIMEOUT) / 2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MarlinUI::show_bootscreen() {
|
void MarlinUI::show_bootscreen() {
|
||||||
|
|
|
@ -319,7 +319,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(SHOW_BOOTSCREEN)
|
#if ENABLED(SHOW_BOOTSCREEN)
|
||||||
static void draw_marlin_bootscreen();
|
static void draw_marlin_bootscreen(const bool line2=false);
|
||||||
static void show_marlin_bootscreen();
|
static void show_marlin_bootscreen();
|
||||||
static void show_bootscreen();
|
static void show_bootscreen();
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "AJMartel" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "AJMartel" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
#define STRING_CONFIG_H_AUTHOR "(ETE-Design, Granty v1)" // Who made the changes.
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(ETE-Design, Gantry v1)" // Who made the changes.
|
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
#define STRING_CONFIG_H_AUTHOR "(ETE-Design, Granty v2)" // Who made the changes.
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(ETE-Design, Gantry v2)" // Who made the changes.
|
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Aleph Objects Inc, TAZ)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Aleph Objects Inc, TAZ)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -112,13 +112,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "Hobi, tpruvot" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "Hobi, tpruvot" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -131,10 +126,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, CL-260)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, CL-260)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Modmike, Anet A2)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Modmike, Anet A2)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Modmike, Anet A2 Plus)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Modmike, Anet A2 Plus)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Ralf_E, ANET A6 config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Ralf_E, ANET A6 config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Bob Kuhn, Anet config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Bob Kuhn, Anet config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Martin Zeman - Zemistr, Anet A8 Plus)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Martin Zeman - Zemistr, Anet A8 Plus)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "InsanityAutomation" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "InsanityAutomation" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -78,13 +78,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "@jbrazio" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "@jbrazio" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -97,10 +92,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(bq Witbox)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(bq Witbox)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(MaukCC, CartesioE)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(MaukCC, CartesioE)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Creality CR-10)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Creality CR-10)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(printedsolid.com, CR-10S)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(printedsolid.com, CR-10S)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Evgeny-SPB, CR-10 S5)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Evgeny-SPB, CR-10 S5)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -79,13 +79,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -98,10 +93,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(CR-20 Pro)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(CR-20 Pro)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(m0oml)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(m0oml)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(D-side, CR-8)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(D-side, CR-8)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(tommie, Ender 2/4)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(tommie, Ender 2/4)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-3)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-3)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Skorpi, Creality Ender-4, brandstaetter)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Skorpi, Creality Ender-4, brandstaetter)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-5)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Ender-5)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "InsanityAutomation" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "InsanityAutomation" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Sidewinder X1)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Sidewinder X1)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "elsie tech corp" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "elsie tech corp" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, Felix)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, Felix)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, Felix/DUAL)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, Felix/DUAL)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "M. Baker" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "M. Baker" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -111,13 +111,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "Tinymachines3D" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "Tinymachines3D" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -130,10 +125,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -73,13 +73,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "Formbot-3D" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "Formbot-3D" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -92,10 +87,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -74,13 +74,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "Formbot-3D" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "Formbot-3D" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -93,10 +88,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
#define CUSTOM_STATUS_SCREEN_IMAGE
|
#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, Geeetech A10 default)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, Geeetech A10 default)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(R. de Weerd, I3 Pro X)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(R. de Weerd, I3 Pro X)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, MeCreator2)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, MeCreator2)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(1138-4EB, Geeetech Prusa i3 Pro B BLTouch config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(1138-4EB, Geeetech Prusa i3 Pro B BLTouch config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(1138-4EB, Geeetech Prusa i3 Pro B config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(1138-4EB, Geeetech Prusa i3 Pro B config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Scheepers, MaukCC)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Scheepers, MaukCC)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(tjclement, Infitary M508)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(tjclement, Infitary M508)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,18 +70,13 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
|
|
||||||
// ╦╔═╗╔═╗┬ ┬┬─┐┌─┐┬─┐┌─┐╔═╗┌─┐┬─┐┬ ┬┌┬┐ ┌─┐┌─┐┌┬┐
|
// ╦╔═╗╔═╗┬ ┬┬─┐┌─┐┬─┐┌─┐╔═╗┌─┐┬─┐┬ ┬┌┬┐ ┌─┐┌─┐┌┬┐
|
||||||
// ║║ ╦╠═╣│ │├┬┘│ │├┬┘├─┤╠╣ │ │├┬┘│ ││││ │ │ ││││
|
// ║║ ╦╠═╣│ │├┬┘│ │├┬┘├─┤╠╣ │ │├┬┘│ ││││ │ │ ││││
|
||||||
// ╚╝╚═╝╩ ╩└─┘┴└─└─┘┴└─┴ ┴╚ └─┘┴└─└─┘┴ ┴o└─┘└─┘┴ ┴
|
// ╚╝╚═╝╩ ╩└─┘┴└─└─┘┴└─┴ ┴╚ └─┘┴└─└─┘┴ ┴o└─┘└─┘┴ ┴
|
||||||
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Roberto Mariani & Samuel Pinches)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Roberto Mariani & Samuel Pinches)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 "JG-A1 v2.0 (29-7-19)" // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 "JGAuroraForum.com" // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -94,10 +89,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -75,13 +75,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Telli Mantelli, Kris Waclawski, Samuel Pinches & Michael Gilardi, 21 Jan 2018)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Telli Mantelli, Kris Waclawski, Samuel Pinches & Michael Gilardi, 21 Jan 2018)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -94,10 +89,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,18 +70,13 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
|
|
||||||
// ╦╔═╗╔═╗┬ ┬┬─┐┌─┐┬─┐┌─┐╔═╗┌─┐┬─┐┬ ┬┌┬┐ ┌─┐┌─┐┌┬┐
|
// ╦╔═╗╔═╗┬ ┬┬─┐┌─┐┬─┐┌─┐╔═╗┌─┐┬─┐┬ ┬┌┬┐ ┌─┐┌─┐┌┬┐
|
||||||
// ║║ ╦╠═╣│ │├┬┘│ │├┬┘├─┤╠╣ │ │├┬┘│ ││││ │ │ ││││
|
// ║║ ╦╠═╣│ │├┬┘│ │├┬┘├─┤╠╣ │ │├┬┘│ ││││ │ │ ││││
|
||||||
// ╚╝╚═╝╩ ╩└─┘┴└─└─┘┴└─┴ ┴╚ └─┘┴└─└─┘┴ ┴o└─┘└─┘┴ ┴
|
// ╚╝╚═╝╩ ╩└─┘┴└─└─┘┴└─┴ ┴╚ └─┘┴└─└─┘┴ ┴o└─┘└─┘┴ ┴
|
||||||
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Roberto Mariani & Samuel Pinches)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Roberto Mariani & Samuel Pinches)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 "JG-A5S v2.0 (29-7-19)" // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 "JGAuroraForum.com" // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -94,10 +89,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -90,13 +90,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "ejtagle" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "ejtagle" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -109,10 +104,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -75,13 +75,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Gunther)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Gunther)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -94,10 +89,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(xC0000005, Malyan M200 build)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(xC0000005, Malyan M200 build)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(MetalSearch, Micromake C1 factory settings)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(MetalSearch, Micromake C1 factory settings)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(MetalSearch, Micromake C1 enhanced)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(MetalSearch, Micromake C1 enhanced)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,14 +70,9 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(platon42)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(platon42)" // Who made the changes.
|
||||||
//#define SHOW_BOOTSCREEN
|
//
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
*
|
*
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(indazoo, Huxley v1)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(indazoo, Huxley v1)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "RepRapWorld.com" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "RepRapWorld.com" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, RigidBot)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, RigidBot)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -97,13 +97,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -116,10 +111,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "Victor Perez" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "Victor Perez" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION "STM32F103RET6 board" // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "Victor Perez" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "Victor Perez" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION "STM32F103RET6 board" // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thinkyhead, Sanguinololu)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thinkyhead, Sanguinololu)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Michelangelo)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Michelangelo)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Tarantula Pro)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Tarantula Pro)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Tornado V1)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Tornado V1)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Tornado V2)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Tevo Tornado V2)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Spawn32, The_Borg)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Spawn32, The_Borg)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -86,13 +86,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(StefanB, TinyBoy2)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(StefanB, TinyBoy2)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -105,10 +100,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Claus Naeveke, 0.1)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Claus Naeveke, 0.1)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Schullebernd, Tronxy X3A)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Schullebernd, Tronxy X3A)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Anthony Rich, OEM stock config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Anthony Rich, OEM stock config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Rob Griffiths, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Rob Griffiths, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -86,13 +86,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(K8200, @CONSULitAS)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(K8200, @CONSULitAS)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -105,10 +100,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Anthony Birkett, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Anthony Birkett, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Anthony Birkett, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Anthony Birkett, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Julian + Jason)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Julian + Jason)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Rob Mendon, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Rob Mendon, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Wanhao i3 Mini)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(thisiskeithb, Wanhao i3 Mini)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
//#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -85,13 +85,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "@brandstaetter, @grbd" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "@brandstaetter, @grbd" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 "Welcome to ANYCUBIC" // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -104,10 +99,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Team Overlord/TimMoore)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Team Overlord/TimMoore)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Team Overlord/TimMoore)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Team Overlord/TimMoore)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(LVD, FLSUN-AC)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(LVD, FLSUN-AC)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(LVD, FLSUN-AC)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(LVD, FLSUN-AC)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Michael Henke, flsun Kossel Mini)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Michael Henke, flsun Kossel Mini)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, Geeetech Rostock 301)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(Phr3d13, Geeetech Rostock 301)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -75,13 +75,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -94,10 +89,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(HEINRICHS)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(HEINRICHS)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -74,13 +74,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -93,10 +88,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(oxivanisher)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(oxivanisher)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
#define SHOW_CUSTOM_BOOTSCREEN
|
#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, default config)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
|
@ -70,13 +70,8 @@
|
||||||
|
|
||||||
// @section info
|
// @section info
|
||||||
|
|
||||||
// User-specified version info of this build to display in [Pronterface, etc] terminal window during
|
// Author info of this build printed to the host during boot and M115
|
||||||
// startup. Implementation of an idea by Prof Braino to inform user that any changes made to this
|
|
||||||
// build by the user have been successfully uploaded into firmware.
|
|
||||||
#define STRING_CONFIG_H_AUTHOR "(none, wt150)" // Who made the changes.
|
#define STRING_CONFIG_H_AUTHOR "(none, wt150)" // Who made the changes.
|
||||||
#define SHOW_BOOTSCREEN
|
|
||||||
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION // will be shown during bootup in line 1
|
|
||||||
#define STRING_SPLASH_LINE2 WEBSITE_URL // will be shown during bootup in line 2
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* *** VENDORS PLEASE READ ***
|
* *** VENDORS PLEASE READ ***
|
||||||
|
@ -89,10 +84,13 @@
|
||||||
* respectfully request that you retain the unmodified Marlin boot screen.
|
* respectfully request that you retain the unmodified Marlin boot screen.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Bootscreen.h on startup.
|
// Show the Marlin bootscreen on startup. ** ENABLE FOR PRODUCTION **
|
||||||
|
#define SHOW_BOOTSCREEN
|
||||||
|
|
||||||
|
// Show the bitmap in Marlin/_Bootscreen.h on startup.
|
||||||
//#define SHOW_CUSTOM_BOOTSCREEN
|
//#define SHOW_CUSTOM_BOOTSCREEN
|
||||||
|
|
||||||
// Enable to show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
// Show the bitmap in Marlin/_Statusscreen.h on the status screen.
|
||||||
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
//#define CUSTOM_STATUS_SCREEN_IMAGE
|
||||||
|
|
||||||
// @section machine
|
// @section machine
|
||||||
|
|
Reference in a new issue