You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the --port modifier the 'if interface == serial' statement in dev_shell.py line 94 is always wrong because the variable 'interface' is the complete string ('serial --port COM3' for example).
Suggested change: if interface.split()[0] == 'serial':
The text was updated successfully, but these errors were encountered:
When using the --port modifier the 'if interface == serial' statement in dev_shell.py line 94 is always wrong because the variable 'interface' is the complete string ('serial --port COM3' for example).
Suggested change: if interface.split()[0] == 'serial':
The text was updated successfully, but these errors were encountered: