diff --git a/.github/workflows/compile.yaml b/.github/workflows/compile.yaml index d79bf3a..520034d 100644 --- a/.github/workflows/compile.yaml +++ b/.github/workflows/compile.yaml @@ -24,12 +24,12 @@ jobs: with: fetch-depth: 0 - - uses: actions/cache@v3 - with: - path: | - ~/.cache/pip - ~/.platformio/.cache - key: ${{ runner.os }}-pio-cyd-klipper + #- uses: actions/cache@v3 + # with: + # path: | + # ~/.cache/pip + # ~/.platformio/.cache + # key: ${{ runner.os }}-pio-cyd-klipper - uses: actions/setup-python@v4 with: diff --git a/CYD-Klipper/platformio.ini b/CYD-Klipper/platformio.ini index 4d45bf8..8af9310 100644 --- a/CYD-Klipper/platformio.ini +++ b/CYD-Klipper/platformio.ini @@ -17,7 +17,6 @@ lib_deps = https://github.com/suchmememanyskill/esp32-smartdisplay#9c1d737 bblanchon/ArduinoJson@^7.0.0 plageoj/UrlEncode@^1.0.1 - erriez/ErriezCRC32 @ ^1.0.1 knolleary/PubSubClient@^2.8 monitor_filters = esp32_exception_decoder build_flags = diff --git a/CYD-Klipper/src/core/data_setup.cpp b/CYD-Klipper/src/core/data_setup.cpp index 0e948e9..ce768c4 100644 --- a/CYD-Klipper/src/core/data_setup.cpp +++ b/CYD-Klipper/src/core/data_setup.cpp @@ -113,8 +113,10 @@ void data_setup() { case PrinterType::PrinterTypeKlipper: available_printers[count++] = new KlipperPrinter(i); + break; case PrinterType::PrinterTypeBambuLocal: available_printers[count++] = new BambuPrinter(i); + break; } } }