No need with latest ESP32 git

This commit is contained in:
Luc
2018-07-04 19:01:02 +02:00
parent 02bd840a7a
commit 5aee8a8ad5
2 changed files with 0 additions and 17 deletions

View File

@@ -38,14 +38,6 @@ extern "C" {
#include <time.h>
#endif
#ifdef ARDUINO_ARCH_ESP32
#ifdef USE_SERIAL_1
HardwareSerial Serial (1);
#endif
#ifdef USE_SERIAL_2
HardwareSerial Serial2 (2);
#endif
#endif
#ifdef DHT_FEATURE
#include "DHTesp.h"

View File

@@ -35,15 +35,6 @@
uint8_t ESPCOM::current_socket_id=0;
#ifdef ARDUINO_ARCH_ESP32
#ifdef USE_SERIAL_1
extern HardwareSerial Serial1;
#endif
#ifdef USE_SERIAL_2
extern HardwareSerial Serial2;
#endif
#endif
#ifdef TCP_IP_DATA_FEATURE
WiFiServer * data_server;
WiFiClient serverClients[MAX_SRV_CLIENTS];