diff --git a/ProjectOptions.cmake b/ProjectOptions.cmake index 0e105f4210..2747761ef5 100644 --- a/ProjectOptions.cmake +++ b/ProjectOptions.cmake @@ -330,7 +330,7 @@ set_feature_for_printers(HAS_ESP_FLASH_TASK "MK4" "MK3.5" "XL" "MINI" "COREONE") # ESP # flashing set_feature_for_printers(HAS_EMBEDDED_ESP32 "XL") -set(PRINTERS_WITH_SIDE_LEDS "XL" "iX") +set(PRINTERS_WITH_SIDE_LEDS "XL" "iX" "COREONE") set(PRINTERS_WITH_TRANSLATIONS "COREONE" "MK4" "MK3.5" "XL" "MINI") set(PRINTERS_WITH_EXTFLASH_TRANSLATIONS "MINI") set_feature_for_printers(HAS_LOVE_BOARD "MK4" "iX" "COREONE") @@ -379,7 +379,7 @@ set_feature_for_printers(HAS_SHEET_SUPPORT "MINI" "MK3.5") set_feature_for_printers(HAS_NFC "MK3.5" "MK4" "COREONE") set_feature_for_printers(HAS_NOZZLE_CLEANER "iX") -set_feature_for_printers(HAS_BELT_TUNING "XL" "iX") +set_feature_for_printers(HAS_BELT_TUNING "iX") set_feature_for_printers_master_board(HAS_I2C_EXPANDER "MK3.5" "MK4" "COREONE") set_feature_for_printers(HAS_WASTEBIN "iX") set_feature_for_printers(HAS_GEARS_CALIBRATION "MK4" "COREONE") diff --git a/README.md b/README.md index c4ce886fb6..5ccc1ac64e 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ This repository includes source code and firmware releases for the Original Prusa 3D printers based on the 32-bit ARM microcontrollers. The currently supported models are: -- Original Prusa CORE One - Original Prusa MINI/MINI+ - Original Prusa MK3.5 - Original Prusa MK3.9 - Original Prusa MK4 - Original Prusa XL +- Prusa CORE One ## Getting Started diff --git a/include/common/nozzle_diameter.hpp b/include/common/nozzle_diameter.hpp index 825bea7e95..85ff42db16 100644 --- a/include/common/nozzle_diameter.hpp +++ b/include/common/nozzle_diameter.hpp @@ -4,7 +4,7 @@ static constexpr NumericInputConfig nozzle_diameter_spin_config { .min_value = 0.2, - .max_value = 1.2, + .max_value = 1.8, .step = 0.05, .max_decimal_places = 2, .unit = Unit::millimeter, diff --git a/include/leds/side_strip.hpp b/include/leds/side_strip.hpp index 57d9eda8fe..d4fe1f8f44 100644 --- a/include/leds/side_strip.hpp +++ b/include/leds/side_strip.hpp @@ -2,10 +2,13 @@ #include "led_strip.hpp" #include #include -#include "led_lcd_cs_selector.hpp" #include "printers.h" #include