mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-17 06:52:18 +01: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:
commit
43477bd9d6
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user