mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Merge pull request #1583 from cow77/ide-1.5.x
Makes it possible to link Bridge to another linux-system.
This commit is contained in:
@ -81,7 +81,12 @@ public:
|
||||
}
|
||||
|
||||
void begin() {
|
||||
serial.begin(250000);
|
||||
serial.begin(250000); // for Yun
|
||||
BridgeClass::begin();
|
||||
}
|
||||
|
||||
void begin(int baudrate) {
|
||||
serial.begin(baudrate); // for other linux-systems
|
||||
BridgeClass::begin();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user