Tue, 28 Feb 2023 10:12:46 +0100
MicroPython
- changed device probing to use the 'paste' mode
src/eric7/MicroPython/BoardDataDialog.py | file | annotate | diff | comparison | revisions | |
src/eric7/MicroPython/MicroPythonDeviceInterface.py | file | annotate | diff | comparison | revisions |
--- a/src/eric7/MicroPython/BoardDataDialog.py Mon Feb 27 19:32:50 2023 +0100 +++ b/src/eric7/MicroPython/BoardDataDialog.py Tue Feb 28 10:12:46 2023 +0100 @@ -186,7 +186,6 @@ font = headerItem.font(0) font.setBold(True) - headerItem.setFont(0, font) return headerItem
--- a/src/eric7/MicroPython/MicroPythonDeviceInterface.py Mon Feb 27 19:32:50 2023 +0100 +++ b/src/eric7/MicroPython/MicroPythonDeviceInterface.py Tue Feb 28 10:12:46 2023 +0100 @@ -232,14 +232,14 @@ # switch on raw mode self.__blockReadyRead = True - ok = self.__rawOn() + ok = self.__pasteOn() if not ok: self.__blockReadyRead = False return False # switch off raw mode QThread.msleep(10) - self.__rawOff() + self.__pasteOff() self.__blockReadyRead = False return True