src/eric7/MicroPython/MicroPythonDeviceInterface.py

branch
mpy_network
changeset 10012
d649d500a9a1
parent 10008
c5bcafe3485c
child 10229
e50bbf250343
diff -r 26a7d607b8f6 -r d649d500a9a1 src/eric7/MicroPython/MicroPythonDeviceInterface.py
--- a/src/eric7/MicroPython/MicroPythonDeviceInterface.py	Thu May 04 11:22:11 2023 +0200
+++ b/src/eric7/MicroPython/MicroPythonDeviceInterface.py	Thu May 04 11:47:21 2023 +0200
@@ -18,10 +18,12 @@
         asynchronously executed list of commands (e.g. a script)
     @signal dataReceived(data) emitted to send data received via the connection
         for further processing
+    @signal osdInfo(str) emitted when some OSD data was received from the device
     """
 
     executeAsyncFinished = pyqtSignal()
     dataReceived = pyqtSignal(bytes)
+    osdInfo = pyqtSignal(str)
 
     PasteModePrompt = b"=== "
     TracebackMarker = b"Traceback (most recent call last):"

eric ide

mercurial