mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 15:46:14 +01:00
Compare commits
4 Commits
4b306df882
...
7b83883e49
Author | SHA1 | Date | |
---|---|---|---|
|
7b83883e49 | ||
|
4e491a1e56 | ||
|
430161ef60 | ||
|
62a204b65c |
|
@ -104,6 +104,9 @@ void setup()
|
|||
#endif // ARDUINO_ARCH_ESP32
|
||||
|
||||
#if ETHERNET_ON
|
||||
#ifdef ETHERNET_CS
|
||||
Ethernet.init (ETHERNET_CS);
|
||||
#endif // ETHERNET_CS
|
||||
EthernetInterface::setup();
|
||||
#endif // ETHERNET_ON
|
||||
|
||||
|
|
|
@ -76,8 +76,13 @@ int DCCTimer::freeMemory() {
|
|||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef ARDUINO_ARCH_ESP32
|
||||
|
||||
#include "esp_idf_version.h"
|
||||
#if ESP_IDF_VERSION_MAJOR > 4
|
||||
#error "DCC-EX does not support compiling with IDF version 5.0 or later. Downgrade your ESP32 library to a version that contains IDF version 4. Arduino ESP32 library 3.0.0 is too new. Use 2.0.9 to 2.0.17"
|
||||
#endif
|
||||
|
||||
#include <driver/adc.h>
|
||||
#include <soc/sens_reg.h>
|
||||
#include <soc/sens_struct.h>
|
||||
|
|
Loading…
Reference in New Issue
Block a user