Skip to content

Commit

Permalink
馃悰 ESP32 _delay_ms, fix u8g_esp32_spi.cpp (MarlinFirmware#23810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored and LCh-77 committed Feb 28, 2022
1 parent 93ed559 commit 9eff733
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Marlin/src/HAL/ESP32/HAL.cpp
Expand Up @@ -167,6 +167,8 @@ uint8_t MarlinHAL::get_reset_source() { return rtc_get_reset_reason(1); }

void MarlinHAL::reboot() { ESP.restart(); }

void _delay_ms(int delay_ms) { delay(delay_ms); }

// return free memory between end of heap (or end bss) and whatever is current
int MarlinHAL::freeMemory() { return ESP.getFreeHeap(); }

Expand Down
1 change: 1 addition & 0 deletions Marlin/src/HAL/ESP32/u8g_esp32_spi.cpp
Expand Up @@ -30,6 +30,7 @@
#include <U8glib-HAL.h>
#include "Arduino.h"
#include "../shared/HAL_SPI.h"
#include "HAL.h"
#include "SPI.h"

static SPISettings spiConfig;
Expand Down

0 comments on commit 9eff733

Please sign in to comment.