Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Add 31250 baud rate option in serial monitor for MIDI #1648

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/serialmonitor/serialMonitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class SerialMonitor implements vscode.Disposable {
public static DEFAULT_TIMESTAMP_FORMAT: string = "";

public static listBaudRates(): number[] {
return [300, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 74880, 115200, 230400, 250000, 500000, 1000000, 2000000];
return [300, 1200, 2400, 4800, 9600, 19200, 31250, 38400, 57600, 74880, 115200, 230400, 250000, 500000, 1000000, 2000000];
}

public static getInstance(): SerialMonitor {
Expand Down