Skip to content

Commit

Permalink
- (temporarily) updated the ESP3DLib dependency for MKS TinyBee / ESP…
Browse files Browse the repository at this point in the history
…32 to fix compilation issues on the latest Espressif toolchains

When the PR luc-github/ESP3DLib#51 has been merged then please change it back!

- (temporarily) updated the "ESP Async WebServer" dependency for MKS TinyBee / ESP32 to fix compilation issues on the latest Espressif toolchains

Please watch PR me-no-dev/ESPAsyncWebServer#1142 and change back once merged.

- fixed another ESP32 bug due to toolchain update
  • Loading branch information
quiret committed Feb 2, 2023
1 parent 62ebd6e commit 47f8064
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Marlin/src/HAL/ESP32/timers.cpp
Expand Up @@ -90,7 +90,7 @@ void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency) {
config.counter_en = TIMER_PAUSE;
config.alarm_en = TIMER_ALARM_EN;
config.intr_type = TIMER_INTR_LEVEL;
config.auto_reload = true;
config.auto_reload = TIMER_AUTORELOAD_EN;

// Select and initialize the timer
timer_init(timer.group, timer.idx, &config);
Expand Down
4 changes: 2 additions & 2 deletions ini/features.ini
Expand Up @@ -240,8 +240,8 @@ IS_SCARA = src_filter=+<src/module/scara.cpp>
HAS_SERVOS = src_filter=+<src/module/servo.cpp> +<src/gcode/control/M280.cpp>
MORGAN_SCARA = src_filter=+<src/gcode/scara>
HAS_MICROSTEPS = src_filter=+<src/gcode/control/M350_M351.cpp>
(ESP3D_)?WIFISUPPORT = AsyncTCP, ESP Async WebServer
ESP3DLib=https://github.com/luc-github/ESP3DLib/archive/master.zip
(ESP3D_)?WIFISUPPORT = AsyncTCP, ESP Async WebServer=https://github.com/har-in-air/ESPAsyncWebServer.git
ESP3DLib=https://github.com/quiret/ESP3DLib
arduinoWebSockets=links2004/WebSockets@2.3.4
luc-github/ESP32SSDP@1.1.1
lib_ignore=ESPAsyncTCP

0 comments on commit 47f8064

Please sign in to comment.