src/eric7/MicroPython/MicroPythonDeviceInterface.py

branch
eric7
changeset 9766
f0e22f3a5878
parent 9765
6378da868bb0
child 9775
c6806d24468b
--- a/src/eric7/MicroPython/MicroPythonDeviceInterface.py	Tue Feb 14 18:10:30 2023 +0100
+++ b/src/eric7/MicroPython/MicroPythonDeviceInterface.py	Wed Feb 15 15:55:37 2023 +0100
@@ -24,36 +24,7 @@
 
 class MicroPythonDeviceInterface(QObject):
     """
-    Class implementing some file system commands for MicroPython.
-
-    Commands are provided to perform operations on the file system of a
-    connected MicroPython device. Supported commands are:
-    <ul>
-    <li>ls: directory listing</li>
-    <li>lls: directory listing with meta data</li>
-    <li>cd: change directory</li>
-    <li>pwd: get the current directory</li>
-    <li>put: copy a file to the connected device</li>
-    <li>putData: write data to a file of the connected device</li>
-    <li>get: get a file from the connected device</li>
-    <li>getData: read data of a file of the connected device</li>
-    <li>rm: remove a file from the connected device</li>
-    <li>rmrf: remove a file/directory recursively (like 'rm -rf' in bash)
-    <li>mkdir: create a new directory</li>
-    <li>rmdir: remove an empty directory</li>
-    <li>fileSystemInfo: get information about the file system
-    </ul>
-
-    There are additional non file systemcommands.
-    <ul>
-    <li>getBoardData: get information about the connected board</li>
-    <li>getDeviceData: get version info about MicroPython and some implementation
-        information</li>
-    <li>getModules: get a list of built-in modules</li>
-    <li>getTime: get the current time</li>
-    <li>syncTime: synchronize the time of the connected device</li>
-    <li>showTime: show the current time of the connected device</li>
-    </ul>
+    Class implementing an interface to talk to a connected MicroPython device.
 
     @signal executeAsyncFinished() emitted to indicate the end of an
         asynchronously executed list of commands (e.g. a script)

eric ide

mercurial