Browse Source

Fix ESP32 name conflict

pull/1/head
Scott Lahteine 5 years ago
parent
commit
3949d246df
  1. 2
      Marlin/src/core/boards.h
  2. 4
      Marlin/src/inc/SanityCheck.h
  3. 5
      Marlin/src/pins/pins.h
  4. 4
      buildroot/share/tests/esp32-tests

2
Marlin/src/core/boards.h

@ -310,7 +310,7 @@
//
// Espressif ESP32 WiFi
//
#define BOARD_ESP32 6000
#define BOARD_ESPRESSIF_ESP32 6000
//
// Simulations

4
Marlin/src/inc/SanityCheck.h

@ -417,6 +417,7 @@
#define BOARD_BIQU_SKR_V1_1 -1004
#define BOARD_STM32F1R -1005
#define BOARD_STM32F103R -1006
#define BOARD_ESP32 -1007
#if MB(MKS_13)
#error "BOARD_MKS_13 has been renamed BOARD_MKS_GEN_13. Please update your configuration."
#elif MB(TRIGORILLA)
@ -431,6 +432,8 @@
#error "BOARD_STM32F1R has been renamed BOARD_STM32F103RE. Please update your configuration."
#elif MB(STM32F103R)
#error "BOARD_STM32F103R has been renamed BOARD_STM32F103RE. Please update your configuration."
#elif MOTHERBOARD == BOARD_ESP32
#error "BOARD_ESP32 has been renamed BOARD_ESPRESSIF_ESP32. Please update your configuration."
#endif
#undef BOARD_MKS_13
#undef BOARD_TRIGORILLA
@ -439,6 +442,7 @@
#undef BOARD_BIQU_SKR_V1_1
#undef BOARD_STM32F1R
#undef BOARD_STM32F103R
#undef BOARD_ESP32
/**
* Marlin release, version and default string

5
Marlin/src/pins/pins.h

@ -21,6 +21,8 @@
*/
#pragma once
#include "../core/boards.h"
/**
* Include pins definitions
*
@ -528,7 +530,8 @@
// Espressif ESP32
//
#elif MB(ESP32)
#elif MB(ESPRESSIF_ESP32)
#include "esp32/pins_ESP32.h" // ESP32 env:esp32
//

4
buildroot/share/tests/esp32-tests

@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# Build tests for esp32
# Build tests for ESP32
#
# exit on first failure
@ -10,7 +10,7 @@ set -e
# Build with the default configurations
#
restore_configs
opt_set MOTHERBOARD BOARD_ESP32
opt_set MOTHERBOARD BOARD_ESPRESSIF_ESP32
opt_enable WIFISUPPORT GCODE_MACROS BAUD_RATE_GCODE
opt_set "WIFI_SSID \"ssid\""
opt_set "WIFI_PWD \"password\""

Loading…
Cancel
Save