Commit e88814a2 authored by Damien George's avatar Damien George

Merge pull request #543 from lurch/patch-4

Make pyboard.enter_raw_repl more robust
parents ffaf8be1 1f740bda
......@@ -50,6 +50,7 @@ class Pyboard:
return data
def enter_raw_repl(self):
self.serial.write(b'\r\x03') # ctrl-C: interrupt any running program
self.serial.write(b'\r\x01') # ctrl-A: enter raw REPL
self.serial.write(b'\x04') # ctrl-D: soft reset
data = self.read_until(1, b'to exit\r\n>')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment