Skip to content

Commit f80d0fc

Browse files
committed
Move setSlowWrite call from menuPortSelector to serial.open
1 parent 1caba3d commit f80d0fc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

js/core/menuPortSelector.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -151,12 +151,11 @@
151151
}
152152

153153
Espruino.Core.Status.setStatus("Connecting...");
154-
Espruino.Core.Serial.setSlowWrite(true); // force slow write to ensure things work ok
155154
Espruino.Core.Serial.open(serialPort, function(cInfo) {
156155
if (cInfo!==undefined && cInfo.error===undefined) {
157156
console.log("Device found "+JSON.stringify(cInfo));
158-
var name = nameFromConInfo(cInfo);
159-
if (Espruino.Core.Env) {
157+
var name = nameFromConInfo(cInfo);
158+
if (Espruino.Core.Env) {
160159
var boardData = Espruino.Core.Env.getBoardData();
161160
if (!boardData.BOARD || !boardData.VERSION)
162161
name += " (No response from board)";

0 commit comments

Comments
 (0)