src/eric7/MicroPython/MicroPythonDeviceInterface.py

branch
mpy_network
changeset 10012
d649d500a9a1
parent 10008
c5bcafe3485c
child 10229
e50bbf250343
equal deleted inserted replaced
10011:26a7d607b8f6 10012:d649d500a9a1
16 16
17 @signal executeAsyncFinished() emitted to indicate the end of an 17 @signal executeAsyncFinished() emitted to indicate the end of an
18 asynchronously executed list of commands (e.g. a script) 18 asynchronously executed list of commands (e.g. a script)
19 @signal dataReceived(data) emitted to send data received via the connection 19 @signal dataReceived(data) emitted to send data received via the connection
20 for further processing 20 for further processing
21 @signal osdInfo(str) emitted when some OSD data was received from the device
21 """ 22 """
22 23
23 executeAsyncFinished = pyqtSignal() 24 executeAsyncFinished = pyqtSignal()
24 dataReceived = pyqtSignal(bytes) 25 dataReceived = pyqtSignal(bytes)
26 osdInfo = pyqtSignal(str)
25 27
26 PasteModePrompt = b"=== " 28 PasteModePrompt = b"=== "
27 TracebackMarker = b"Traceback (most recent call last):" 29 TracebackMarker = b"Traceback (most recent call last):"
28 30
29 def __init__(self, parent=None): 31 def __init__(self, parent=None):

eric ide

mercurial