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

If anyone ever wants to run a SABERTOOTH motor controller from a Mega2560

This commit is contained in:
Harald Barth 2024-09-07 23:31:02 +02:00
parent b026417efb
commit b53384ab51

View File

@ -94,6 +94,8 @@ void SerialManager::init() {
#ifdef SABERTOOTH
#ifdef ARDUINO_ARCH_ESP32
Serial2.begin(9600, SERIAL_8N1, 16, 17); // GPIO 16 RXD2; GPIO 17 TXD2 on ESP32
#else
Serial2.begin(9600);
#endif
#endif
}