Skip to content

Commit 47f8064

Browse files
committed
- (temporarily) updated the ESP3DLib dependency for MKS TinyBee / ESP32 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
1 parent 62ebd6e commit 47f8064

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Marlin/src/HAL/ESP32/timers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency) {
9090
config.counter_en = TIMER_PAUSE;
9191
config.alarm_en = TIMER_ALARM_EN;
9292
config.intr_type = TIMER_INTR_LEVEL;
93-
config.auto_reload = true;
93+
config.auto_reload = TIMER_AUTORELOAD_EN;
9494

9595
// Select and initialize the timer
9696
timer_init(timer.group, timer.idx, &config);

ini/features.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ IS_SCARA = src_filter=+<src/module/scara.cpp>
240240
HAS_SERVOS = src_filter=+<src/module/servo.cpp> +<src/gcode/control/M280.cpp>
241241
MORGAN_SCARA = src_filter=+<src/gcode/scara>
242242
HAS_MICROSTEPS = src_filter=+<src/gcode/control/M350_M351.cpp>
243-
(ESP3D_)?WIFISUPPORT = AsyncTCP, ESP Async WebServer
244-
ESP3DLib=https://github.com/luc-github/ESP3DLib/archive/master.zip
243+
(ESP3D_)?WIFISUPPORT = AsyncTCP, ESP Async WebServer=https://github.com/har-in-air/ESPAsyncWebServer.git
244+
ESP3DLib=https://github.com/quiret/ESP3DLib
245245
arduinoWebSockets=links2004/[email protected]
246246
luc-github/[email protected]
247247
lib_ignore=ESPAsyncTCP

0 commit comments

Comments
 (0)