Przeglądaj źródła

🐛 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (#23810)

ellensp 2 lat temu
rodzic
commit
358ffddef8
No account linked to committer's email address

+ 2
- 0
Marlin/src/HAL/ESP32/HAL.cpp Wyświetl plik

@@ -167,6 +167,8 @@ uint8_t MarlinHAL::get_reset_source() { return rtc_get_reset_reason(1); }
167 167
 
168 168
 void MarlinHAL::reboot() { ESP.restart(); }
169 169
 
170
+void _delay_ms(int delay_ms) { delay(delay_ms); }
171
+
170 172
 // return free memory between end of heap (or end bss) and whatever is current
171 173
 int MarlinHAL::freeMemory() { return ESP.getFreeHeap(); }
172 174
 

+ 1
- 0
Marlin/src/HAL/ESP32/u8g_esp32_spi.cpp Wyświetl plik

@@ -30,6 +30,7 @@
30 30
 #include <U8glib-HAL.h>
31 31
 #include "Arduino.h"
32 32
 #include "../shared/HAL_SPI.h"
33
+#include "HAL.h"
33 34
 #include "SPI.h"
34 35
 
35 36
 static SPISettings spiConfig;

Ładowanie…
Anuluj
Zapisz