Skip to content

Commit 6642d98

Browse files
committed
mod: revert to fake
1 parent b74dad1 commit 6642d98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/monitor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ class BridgeMonitor: public Stream {
3737

3838
using Print::write;
3939

40-
bool begin(unsigned long baudrate=DEFAULT_SERIAL_BAUD) {
40+
bool begin(unsigned long _legacy_baud=0, uint16_t _legacy_config=0) {
4141
k_mutex_init(&monitor_mutex);
4242

4343
bool bridge_started = (*bridge);
4444
if (!bridge_started) {
45-
bridge_started = bridge->begin(baudrate);
45+
bridge_started = bridge->begin();
4646
}
4747
return bridge_started && bridge->call(MON_CONNECTED_METHOD, is_connected);
4848
}

0 commit comments

Comments
 (0)