-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
536bb3f
commit e774930
Showing
27 changed files
with
2,537 additions
and
472 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#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 20230724 | ||
|
||
#ifdef PRUSA_AIO_PRINTER_NAME | ||
#error "PRUSA_AIO_PRINTER_NAME is now PRUSA_AIO_CUSTOM_PRINTER_NAME. 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 |
Oops, something went wrong.