SKR Pro 1.1 WiFi and LCD SD card support (#17531)

This commit is contained in:
Bob Kuhn
2020-04-16 03:55:33 -05:00
committed by GitHub
parent d194688020
commit f5d809f366
7 changed files with 111 additions and 8 deletions

View File

@@ -44,6 +44,7 @@
#include "feature/closedloop.h"
#include "HAL/shared/Delay.h"
#include "HAL/shared/esp_wifi.h"
#include "module/stepper/indirection.h"
@@ -962,6 +963,8 @@ void setup() {
BOARD_INIT();
#endif
SETUP_RUN(esp_wifi_init());
// Check startup - does nothing if bootloader sets MCUSR to 0
byte mcu = HAL_get_reset_source();
if (mcu & 1) SERIAL_ECHOLNPGM(STR_POWERUP);