Skip to content

Commit

Permalink
Update 2.0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxies-CSTL committed May 21, 2021
1 parent c2253a8 commit ae70f53
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
14 changes: 7 additions & 7 deletions Marlin/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
/**
* Marlin release version identifier
*/
//#define SHORT_BUILD_VERSION "2.0.8.1"
#define SHORT_BUILD_VERSION "FLSunQ_2.0.8.1"

/**
* Verbose version identifier which should contain a reference to the location
* from where the binary was downloaded or the source code was compiled.
*/
//#define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION
#define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION

/**
* The STRING_DISTRIBUTION_DATE represents when the binary file was built,
Expand All @@ -46,15 +46,15 @@
/**
* Defines a generic printer name to be output to the LCD after booting Marlin.
*/
//#define MACHINE_NAME "3D Printer"
#define MACHINE_NAME "Delta_FLSun"

/**
* The SOURCE_CODE_URL is the location where users will find the Marlin Source
* Code which is installed on the device. In most cases —unless the manufacturer
* has a distinct Github fork— the Source Code URL should just be the main
* Marlin repository.
*/
//#define SOURCE_CODE_URL "github.com/MarlinFirmware/Marlin"
#define SOURCE_CODE_URL "github.com/Foxies-CSTL/Marlin2.0.x"

/**
* Default generic printer UUID.
Expand All @@ -65,12 +65,12 @@
* The WEBSITE_URL is the location where users can get more information such as
* documentation about a specific Marlin release.
*/
//#define WEBSITE_URL "marlinfw.org"
#define WEBSITE_URL "Powered by Foxies"

/**
* Set the vendor info the serial USB interface, if changable
* Currently only supported by DUE platform
*/
//#define USB_DEVICE_VENDOR_ID 0x0000
//#define USB_DEVICE_PRODUCT_ID 0x0000
#define USB_DEVICE_VENDOR_ID 0x1a86
#define USB_DEVICE_PRODUCT_ID 0x7523
//#define USB_DEVICE_MANUFACTURE_NAME WEBSITE_URL
4 changes: 3 additions & 1 deletion Marlin/_Bootscreen.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#define CUSTOM_BOOTSCREEN_BMPWIDTH 128

const unsigned char custom_start_bmp[] PROGMEM = {
B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00000001,B00000000,B00001000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00000011,B10000000,B00011100,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00000001,B11000000,B00111000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
Expand Down Expand Up @@ -74,5 +75,6 @@ const unsigned char custom_start_bmp[] PROGMEM = {
B00000000,B00000000,B01111111,B11100000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00000000,B11111111,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00001111,B10000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00001111,B11111111,B11111110,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000
B00001111,B11111111,B11111110,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000
};
8 changes: 5 additions & 3 deletions Marlin/_Statusscreen.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
//
// Status Screen Logo bitmap
//
#define STATUS_LOGO_X 0
#define STATUS_LOGO_Y 0
#define STATUS_LOGO_X 0
#define STATUS_LOGO_Y 0
#define STATUS_LOGO_WIDTH 40

const unsigned char status_logo_bmp[] PROGMEM = {
Expand All @@ -64,13 +64,15 @@ const unsigned char status_logo_bmp[] PROGMEM = {
B00000000,B11110011,B10000001,B11001110,B00000000,
B00000000,B00001111,B00000000,B11110000,B00000000,
B00000000,B00000000,B11000011,B00000000,B00000000,
B00000000,B00000000,B01111100,B00000000,B00000000
B00000000,B00000000,B01111100,B00000000,B00000000,
B00000000,B00000000,B00000000,B00000000,B00000000
};

//
// Use default bitmaps
//
#define STATUS_HOTEND_ANIM
#define STATUS_BED_ANIM
//
#define STATUS_HEATERS_X 48
#define STATUS_BED_X 70
5 changes: 3 additions & 2 deletions Marlin/src/lcd/menu/menu_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,9 @@ void menu_configuration();
CUSTOM_ITEM_MAIN(3);
#endif
#if HAS_CUSTOM_ITEM_MAIN(4)
CUSTOM_TEST_MAIN(4);
CUSTOM_ITEM_MAIN(4);
SUBMENU(MSG_PROBE_WIZARD, goto_probe_offset_wizard);
//CUSTOM_TEST_MAIN(4);
//CUSTOM_ITEM_MAIN(4);
#endif
#if HAS_CUSTOM_ITEM_MAIN(5)
CUSTOM_TEST_MAIN(5);
Expand Down

0 comments on commit ae70f53

Please sign in to comment.