Scott Lahteine
8 years ago
committed by
GitHub
34 changed files with 655 additions and 154 deletions
@ -1,77 +0,0 @@ |
|||
/**
|
|||
* Marlin 3D Printer Firmware |
|||
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|||
* |
|||
* Based on Sprinter and grbl. |
|||
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
* |
|||
*/ |
|||
|
|||
/**
|
|||
* BitMap for custom splashscreen |
|||
* Generated with: http://www.digole.com/tools/PicturetoC_Hex_converter.php
|
|||
*/ |
|||
|
|||
//#define CUSTOM_START_BMP
|
|||
|
|||
#if ENABLED(CUSTOM_START_BMP) |
|||
|
|||
#define CUSTOM_START_BMP_DELAY 2000 |
|||
#define CUSTOM_START_BMPWIDTH 112 |
|||
#define CUSTOM_START_BMPHEIGHT 38 |
|||
#define CUSTOM_START_BMPBYTEWIDTH 14 |
|||
#define CUSTOM_START_BMPBYTES 532 // CUSTOM_START_BMPWIDTH * CUSTOM_START_BMPHEIGHT / 8
|
|||
|
|||
const unsigned char custom_start_bmp[CUSTOM_START_BMPBYTES] PROGMEM = { |
|||
0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
|||
0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
|||
0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xFF, |
|||
0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, |
|||
0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, |
|||
0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, |
|||
0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, |
|||
0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x3F, 0xFF, |
|||
0xC0, 0x0F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x18, 0x00, 0x1F, 0xFF, |
|||
0xC0, 0x3F, 0xE1, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x0F, 0xFF, |
|||
0xC0, 0x7F, 0xF3, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x07, 0xFF, |
|||
0xC0, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x03, 0xFF, |
|||
0xC1, 0xF8, 0x7F, 0x87, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x01, 0xFF, |
|||
0xC1, 0xF0, 0x3F, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0xFF, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE0, 0x1F, 0x00, 0x03, 0xE0, 0x78, 0x3C, 0x03, 0xF0, 0x7F, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE0, 0x7F, 0xC0, 0x0F, 0xF8, 0x78, 0x3C, 0x07, 0xFC, 0x3F, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE1, 0xFF, 0xE0, 0x1F, 0xFC, 0x78, 0x3C, 0x0F, 0xFE, 0x1F, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE3, 0xFF, 0xF0, 0x3F, 0xFE, 0x78, 0x3C, 0x1F, 0xFE, 0x0F, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE3, 0xF3, 0xF8, 0x3F, 0x3E, 0x78, 0x3C, 0x3F, 0x3F, 0x07, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0xE0, 0xFC, 0x7C, 0x1F, 0x78, 0x3C, 0x3E, 0x1F, 0x07, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0xC0, 0x7C, 0x7C, 0x0F, 0x78, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0x80, 0x7C, 0x78, 0x0F, 0x78, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0x80, 0x3C, 0x78, 0x00, 0x78, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0x80, 0x3C, 0x78, 0x00, 0x78, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0x80, 0x3C, 0x78, 0x00, 0x78, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE7, 0xC0, 0x3C, 0x78, 0x00, 0x78, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE3, 0xE0, 0x3C, 0x78, 0x00, 0x7C, 0x3C, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE3, 0xFF, 0x3F, 0xF8, 0x00, 0x7F, 0xBC, 0x3C, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE1, 0xFF, 0x3F, 0xF8, 0x00, 0x3F, 0xBF, 0xFC, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE0, 0xFF, 0x3F, 0xF8, 0x00, 0x1F, 0xBF, 0xFC, 0x0F, 0x03, |
|||
0xC1, 0xE0, 0x1E, 0x01, 0xE0, 0x7F, 0x3F, 0xF8, 0x00, 0x0F, 0xBF, 0xFC, 0x0F, 0x03, |
|||
0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, |
|||
0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, |
|||
0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, |
|||
0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, |
|||
0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, |
|||
0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, |
|||
0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80 }; |
|||
#endif |
@ -0,0 +1,95 @@ |
|||
/**
|
|||
* Marlin 3D Printer Firmware |
|||
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|||
* |
|||
* Based on Sprinter and grbl. |
|||
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
* |
|||
*/ |
|||
#include <avr/pgmspace.h> |
|||
|
|||
#if ENABLED(SHOW_BOOTSCREEN) && ENABLED(SHOW_CUSTOM_BOOTSCREEN) |
|||
#define CUSTOM_BOOTSCREEN_TIMEOUT 2500 |
|||
#define CUSTOM_BOOTSCREEN_BMPWIDTH 63 |
|||
#define CUSTOM_BOOTSCREEN_BMPHEIGHT 64 |
|||
|
|||
const unsigned char 81x0i84fkcmoqbu7vte29[512] PROGMEM = { |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, |
|||
0x00, 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, |
|||
0x00, 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, |
|||
0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, |
|||
0x00, 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, |
|||
0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x0f, 0x07, 0x87, 0xff, 0xff, 0xe0, 0x00, |
|||
0x00, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xf1, 0x00, |
|||
0x01, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xf1, 0x80, |
|||
0x03, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xf1, 0x80, |
|||
0x07, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xe1, 0xc0, |
|||
0x07, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xe0, |
|||
0x0f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xe0, |
|||
0x0f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xf0, |
|||
0x1f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xf0, |
|||
0x1f, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xe1, 0xf0, |
|||
0x3f, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xf1, 0xf8, |
|||
0x3f, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xf1, 0xf8, |
|||
0x3f, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xf1, 0xf8, |
|||
0x3f, 0x1f, 0x8f, 0xc7, 0xff, 0xff, 0xe1, 0xf8, |
|||
0x7f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xfc, |
|||
0x7f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xfc, |
|||
0x7f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xfc, |
|||
0x7f, 0x1f, 0x8f, 0xc7, 0xc0, 0x00, 0x01, 0xfc, |
|||
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, |
|||
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, |
|||
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, |
|||
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, |
|||
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, |
|||
0x7f, 0x00, 0x00, 0x07, 0xc7, 0xe3, 0xf1, 0xfc, |
|||
0x7f, 0x00, 0x00, 0x07, 0xc7, 0xe3, 0xf1, 0xfc, |
|||
0x7f, 0x00, 0x00, 0x07, 0xc7, 0xe3, 0xf1, 0xfc, |
|||
0x3f, 0x0f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xf8, |
|||
0x3f, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xf8, |
|||
0x3f, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xf8, |
|||
0x3f, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xf8, |
|||
0x1f, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xf0, |
|||
0x1f, 0x0f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xf0, |
|||
0x1f, 0x00, 0x00, 0x07, 0xc7, 0xe3, 0xf1, 0xe0, |
|||
0x0f, 0x00, 0x00, 0x07, 0xc7, 0xe3, 0xf1, 0xe0, |
|||
0x0f, 0x00, 0x00, 0x07, 0xc7, 0xe3, 0xf1, 0xc0, |
|||
0x07, 0x0f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0xc0, |
|||
0x03, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0x80, |
|||
0x03, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf1, 0x00, |
|||
0x01, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf0, 0x00, |
|||
0x00, 0x1f, 0xff, 0xff, 0xc7, 0xe3, 0xf0, 0x00, |
|||
0x00, 0x0f, 0xff, 0xff, 0xc3, 0xc1, 0xe0, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, |
|||
0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, |
|||
0x00, 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, |
|||
0x00, 0x01, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, |
|||
0x00, 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, |
|||
0x00, 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, |
|||
0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
}; |
|||
#endif |
@ -0,0 +1,95 @@ |
|||
/**
|
|||
* Marlin 3D Printer Firmware |
|||
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|||
* |
|||
* Based on Sprinter and grbl. |
|||
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
* |
|||
*/ |
|||
#include <avr/pgmspace.h> |
|||
|
|||
#if ENABLED(SHOW_BOOTSCREEN) && ENABLED(SHOW_CUSTOM_BOOTSCREEN) |
|||
#define CUSTOM_BOOTSCREEN_TIMEOUT 2500 |
|||
#define CUSTOM_BOOTSCREEN_BMPWIDTH 62 |
|||
#define CUSTOM_BOOTSCREEN_BMPHEIGHT 64 |
|||
|
|||
const unsigned char custom_start_bmp[512] PROGMEM = { |
|||
0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, |
|||
0x00, 0x03, 0xc0, 0x0f, 0xf0, 0x07, 0x80, 0x00, |
|||
0x00, 0x07, 0xe0, 0x07, 0xe0, 0x0f, 0xc0, 0x00, |
|||
0x00, 0x0f, 0xf0, 0x03, 0xc0, 0x1f, 0xe0, 0x00, |
|||
0x00, 0x1f, 0xf8, 0x00, 0x00, 0x3f, 0xf0, 0x00, |
|||
0x00, 0x1f, 0xf8, 0x00, 0x00, 0x3f, 0xf0, 0x00, |
|||
0x00, 0x1f, 0xf8, 0x00, 0x00, 0x3f, 0xf0, 0x00, |
|||
0x00, 0x1f, 0xf8, 0x00, 0x00, 0x3f, 0xf0, 0x00, |
|||
0x00, 0x1f, 0xf8, 0x00, 0x00, 0x3f, 0xf0, 0x00, |
|||
0x00, 0x0f, 0xf0, 0x00, 0x00, 0x1f, 0xe0, 0x00, |
|||
0x00, 0x07, 0xe0, 0x00, 0x00, 0x0f, 0xc0, 0x00, |
|||
0x00, 0x03, 0xc0, 0x00, 0x00, 0x07, 0x80, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xfc, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
|||
0x1e, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, |
|||
0x3f, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, |
|||
0x7f, 0x80, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, |
|||
0xff, 0xc0, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, |
|||
0xff, 0xc0, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, |
|||
0xff, 0xc0, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, |
|||
0xff, 0xc0, 0x00, 0x00, 0xf7, 0xc0, 0x1f, 0x80, |
|||
0xff, 0xc0, 0x00, 0x00, 0xff, 0xf0, 0x7f, 0xc0, |
|||
0x7f, 0x80, 0x00, 0x00, 0xff, 0xf8, 0xff, 0xe0, |
|||
0x3f, 0x00, 0x00, 0x00, 0xfc, 0xf8, 0xf0, 0xf8, |
|||
0x1e, 0x00, 0x00, 0x00, 0xf8, 0x7d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf0, 0x3d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf0, 0x3d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf0, 0x3d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf0, 0x3d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf0, 0x3d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf0, 0x3d, 0xe0, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0xf8, 0x79, 0xf0, 0xf8, |
|||
0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0xff, 0xf8, |
|||
0x00, 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x7f, 0xf8, |
|||
0x00, 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x3f, 0xf8, |
|||
0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x0e, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, |
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, |
|||
}; |
|||
#endif |
@ -0,0 +1,33 @@ |
|||
/**
|
|||
* Marlin 3D Printer Firmware |
|||
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|||
* |
|||
* Based on Sprinter and grbl. |
|||
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
* |
|||
*/ |
|||
|
|||
#include "Marlin.h" |
|||
#include "temperature.h" |
|||
|
|||
void safe_delay(uint16_t ms) { |
|||
while (ms > 50) { |
|||
ms -= 50; |
|||
delay(50); |
|||
thermalManager.manage_heater(); |
|||
} |
|||
delay(ms); |
|||
} |
@ -1,3 +1,7 @@ |
|||
#!/usr/bin/env bash |
|||
|
|||
eval "cp Marlin/example_configurations/$1/Configuration* Marlin/" |
|||
eval "cp Marlin/example_configurations/${1}/Configuration* Marlin/" |
|||
|
|||
if [ -f "Marlin/example_configurations/${1}/_Bootscreen.h" ]; then |
|||
cp "Marlin/example_configurations/${1}/_Bootscreen.h" Marlin/ |
|||
fi |
|||
|
Loading…
Reference in new issue