Skip to content

Commit

Permalink
fix/console_baudrate_key: Rename console baudrate key (espressif#61)
Browse files Browse the repository at this point in the history
Co-authored-by: Rushikesh Patange <rushikesh.patange@espressif.com>
  • Loading branch information
RushikeshPatange and Rushikesh Patange committed May 9, 2024
1 parent 9997c4f commit 29b1853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minimal-launchpad/minimal_ui_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ consoleStartButton.onclick = async () => {
}
}
if (config.portConnectionOptions?.length) {
await transport.connect(parseInt(config.portConnectionOptions[0]?.baudRate), serialOptions);
await transport.connect(parseInt(config.portConnectionOptions[0]?.console_baudrate), serialOptions);
} else {
consoleBaudrateFromToml = config[config['supported_apps'][0]].console_baudrate;
await transport.connect(consoleBaudrateFromToml);
Expand Down

0 comments on commit 29b1853

Please sign in to comment.