Skip to content

Commit

Permalink
🐻 Prusa AIO bugfix-2.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb committed Oct 15, 2023
1 parent 7764966 commit 84ebdf7
Show file tree
Hide file tree
Showing 27 changed files with 2,557 additions and 474 deletions.
325 changes: 184 additions & 141 deletions Marlin/Configuration.h

Large diffs are not rendered by default.

436 changes: 262 additions & 174 deletions Marlin/Configuration_adv.h

Large diffs are not rendered by default.

565 changes: 565 additions & 0 deletions Marlin/Prusa_AIO_Configuration.h

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Marlin/src/inc/MarlinConfigPre.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@

#include "../core/macros.h"
#include "../core/boards.h"

// PRUSA_AIO files
#include "../../Prusa_AIO_Configuration.h"
#include "Prusa_AIO_Changes.h"
#include "Prusa_AIO_SanityCheck.h"
#include "Prusa_AIO_Conditionals.h"

#include "../../Configuration.h"

#ifdef CUSTOM_VERSION_FILE
Expand Down
35 changes: 35 additions & 0 deletions Marlin/src/inc/Prusa_AIO_Changes.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#pragma once
//===========================================================================
//========================== DO NOT EDIT THIS FILE ==========================
//===========================================================================

/**
* Prusa_AIO_Changes.h
* Alert about Prusa_AIO_Configuration.h changes at compile-time.
*/
#define CONFIGURATION_H_VERSION 02010300
#define PRUSA_AIO_VERSION 20231015

#ifdef PRUSA_AIO_PRINTER_NAME
#error "PRUSA_AIO_PRINTER_NAME is now PRUSA_AIO_CUSTOM_PRINTER_NAME. Please update your config."
#endif

#ifdef PRUSA_AIO_FRAME_BEAR_210
#error "PRUSA_AIO_FRAME_BEAR_210 is no longer used and 210mm Z is assumed by default. Please update your config."
#endif

#if ENABLED(PRUSA_AIO_E_STEPPER_BONDTECH_MOTECH)
#error "PRUSA_AIO_E_STEPPER_BONDTECH_MOTECH is now PRUSA_AIO_E_STEPPER_BONDTECH. Please update your config."
#endif

#if ENABLED(PRUSA_AIO_THERMISTOR_DYZE_DESIGN)
#error "PRUSA_AIO_THERMISTOR_DYZE_DESIGN is now PRUSA_AIO_THERMISTOR_TL_T_D500. Please update your config."
#endif

#if ENABLED(PRUSA_AIO_MOTHERBOARD_BTT_SKR_MINI_E3_V3)
#error "PRUSA_AIO_MOTHERBOARD_BTT_SKR_MINI_E3_V3 is now PRUSA_AIO_MOTHERBOARD_BTT_SKR_MINI_E3_V3_0. Please update your config."
#endif

#if ENABLED(PRUSA_AIO_DISPLAY_MINI_12864_NEOPIXEL)
#error "PRUSA_AIO_DISPLAY_MINI_12864_NEOPIXEL is now PRUSA_AIO_DISPLAY_BTT_MINI_12864_NEOPIXEL, PRUSA_AIO_DISPLAY_FYSETC_MINI_12864_NEOPIXEL, or PRUSA_AIO_DISPLAY_MKS_MINI_12864_NEOPIXEL. Please update your config."
#endif
Loading

0 comments on commit 84ebdf7

Please sign in to comment.