-
-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
The serialport baudRate is '115200' in main.ts. But my board firmware use '1000000'. Can micropython-ctl support custom baudRate?
// main.ts
public async connectSerial(path: string) {
// ...
this.state.port = new SerialPort(path, { baudRate: 115200 })like
public async connectSerial(path: string, serialConfigs: any) {
// ...
this.state.port = new SerialPort(path, serialConfigs || { baudRate: 115200 })Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels