Skip to content

Commit

Permalink
Merge pull request #40 from RushikeshPatange/minimal-launchpad/defaul…
Browse files Browse the repository at this point in the history
…t-baudrate-change

Reduced Default Value Of Baudrate In Minimal Launchpad And Added Some VID:PID
  • Loading branch information
igrr committed Sep 19, 2023
2 parents db36a32 + 777e26c commit 2de46fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export const usbPortFilters = [
{ usbVendorId: 0x303a, usbProductId: 0x1002 }, /* Espressif esp-usb-bridge firmware */
{ usbVendorId: 0x303a, usbProductId: 0x0002 }, /* ESP32-S2 USB_CDC */
{ usbVendorId: 0x303a, usbProductId: 0x0009 }, /* ESP32-S3 USB_CDC */
{ usbVendorId: 0x1a86, usbProductId: 0x55d4 }, /* CH9102F */
{ usbVendorId: 0x1a86, usbProductId: 0x7523 }, /* CH340T */
];

export function getTerminalColumns(mainContainer = null) {
Expand Down
2 changes: 1 addition & 1 deletion minimal-launchpad/minimal_ui_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async function connectToDevice() {
try {
const loaderOptions = {
transport: transport,
baudrate: 921600,
baudrate: 460800,
terminal: espLoaderTerminal
};
esploader = new ESPLoader(loaderOptions);
Expand Down

0 comments on commit 2de46fd

Please sign in to comment.