1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 15:46:14 +01:00

Assume that we have enough HW serials

This commit is contained in:
Harald Barth 2023-05-20 23:57:17 +02:00
parent 132b0773ef
commit 8786285624

View File

@ -58,6 +58,20 @@ Stream * WifiInterface::wifiStream;
#define NUM_SERIAL 1
#endif
// To be able to define these in platform specific
// DCCTimer<PLATFORM>.cpp files, we here make the
// assumption that these exist to link against.
// if enough serial interfaces exist.
#if NUM_SERIAL > 0
extern HardwareSerial Serial1;
#endif
#if NUM_SERIAL > 1
extern HardwareSerial Serial2;
#endif
#if NUM_SERIAL > 2
extern HardwareSerial Serial3;
#endif
bool WifiInterface::setup(long serial_link_speed,
const FSH *wifiESSID,
const FSH *wifiPassword,