10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dcc215 commit a75691fCopy full SHA for a75691f
micropython.js
@@ -121,11 +121,11 @@ class MicroPythonBoard {
121
await this.serial.write(Buffer.from(`\r\x01`))
122
123
let data = await this.read_until({
124
- ending: Buffer.from(`raw REPL; CTRL-B to exit`),
+ ending: Buffer.from(`raw REPL; CTRL-B to exit\r\n`),
125
timeout: timeout
126
})
127
128
- if (data.indexOf(`raw REPL; CTRL-B to exit`) !== -1) {
+ if (data.indexOf(`raw REPL; CTRL-B to exit\r\n`) !== -1) {
129
this.in_raw_repl = true
130
return resolve()
131
} else {
0 commit comments