From 868f388577e906cc62f654134aa5373ee5d0c9e0 Mon Sep 17 00:00:00 2001 From: LenweSaralonde <34239920+LenweSaralonde@users.noreply.github.com> Date: Wed, 24 May 2023 18:57:07 +0200 Subject: [PATCH] Add 31250 baud rate option in serial monitor for MIDI --- src/serialmonitor/serialMonitor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serialmonitor/serialMonitor.ts b/src/serialmonitor/serialMonitor.ts index 64f2ecb1..938a1fa6 100644 --- a/src/serialmonitor/serialMonitor.ts +++ b/src/serialmonitor/serialMonitor.ts @@ -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 {