src/eric7/Documentation/Source/eric7.MicroPython.MicroPythonDeviceInterface.html

branch
mpy_network
changeset 9989
286c2a21f36f
parent 9799
a79430a8811d
child 9990
54c614d91eff
--- a/src/eric7/Documentation/Source/eric7.MicroPython.MicroPythonDeviceInterface.html	Mon Apr 24 17:51:11 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.MicroPython.MicroPythonDeviceInterface.html	Thu Apr 27 17:59:09 2023 +0200
@@ -73,6 +73,14 @@
 <td>Constructor</td>
 </tr>
 <tr>
+<td><a href="#MicroPythonDeviceInterface.__executeAsyncPaste">__executeAsyncPaste</a></td>
+<td>Private method to execute a series of commands over a period of time without returning any result (asynchronous execution).</td>
+</tr>
+<tr>
+<td><a href="#MicroPythonDeviceInterface.__executeAsyncRaw">__executeAsyncRaw</a></td>
+<td>Private method to execute a series of commands over a period of time without returning any result (asynchronous execution).</td>
+</tr>
+<tr>
 <td><a href="#MicroPythonDeviceInterface.__execute_paste">__execute_paste</a></td>
 <td>Private method to send commands to the connected device using 'paste' mode and return the result.</td>
 </tr>
@@ -117,10 +125,6 @@
 <td>Public method to execute a series of commands over a period of time without returning any result (asynchronous execution).</td>
 </tr>
 <tr>
-<td><a href="#MicroPythonDeviceInterface.executeAsyncPaste">executeAsyncPaste</a></td>
-<td>Public method to execute a series of commands over a period of time without returning any result (asynchronous execution).</td>
-</tr>
-<tr>
 <td><a href="#MicroPythonDeviceInterface.handlePreferencesChanged">handlePreferencesChanged</a></td>
 <td>Public slot to handle a change of the preferences.</td>
 </tr>
@@ -157,6 +161,36 @@
 reference to the parent object
 </dd>
 </dl>
+<a NAME="MicroPythonDeviceInterface.__executeAsyncPaste" ID="MicroPythonDeviceInterface.__executeAsyncPaste"></a>
+<h4>MicroPythonDeviceInterface.__executeAsyncPaste</h4>
+<b>__executeAsyncPaste</b>(<i>commandsList</i>)
+
+<p>
+        Private method to execute a series of commands over a period of time
+        without returning any result (asynchronous execution).
+</p>
+<dl>
+
+<dt><i>commandsList</i> (list of str)</dt>
+<dd>
+list of commands to be execute on the device
+</dd>
+</dl>
+<a NAME="MicroPythonDeviceInterface.__executeAsyncRaw" ID="MicroPythonDeviceInterface.__executeAsyncRaw"></a>
+<h4>MicroPythonDeviceInterface.__executeAsyncRaw</h4>
+<b>__executeAsyncRaw</b>(<i>commandsList</i>)
+
+<p>
+        Private method to execute a series of commands over a period of time
+        without returning any result (asynchronous execution).
+</p>
+<dl>
+
+<dt><i>commandsList</i> (list of bytes)</dt>
+<dd>
+list of commands to be execute on the device
+</dd>
+</dl>
 <a NAME="MicroPythonDeviceInterface.__execute_paste" ID="MicroPythonDeviceInterface.__execute_paste"></a>
 <h4>MicroPythonDeviceInterface.__execute_paste</h4>
 <b>__execute_paste</b>(<i>commands, timeout=0</i>)
@@ -375,7 +409,7 @@
 </dl>
 <a NAME="MicroPythonDeviceInterface.executeAsync" ID="MicroPythonDeviceInterface.executeAsync"></a>
 <h4>MicroPythonDeviceInterface.executeAsync</h4>
-<b>executeAsync</b>(<i>commandsList</i>)
+<b>executeAsync</b>(<i>commandsList, submitMode</i>)
 
 <p>
         Public method to execute a series of commands over a period of time
@@ -383,24 +417,20 @@
 </p>
 <dl>
 
-<dt><i>commandsList</i> (list of bytes)</dt>
+<dt><i>commandsList</i> (list of str)</dt>
 <dd>
 list of commands to be execute on the device
 </dd>
+<dt><i>submitMode</i> (str (one of 'raw' or 'paste'))</dt>
+<dd>
+mode to be used to submit the commands
+</dd>
 </dl>
-<a NAME="MicroPythonDeviceInterface.executeAsyncPaste" ID="MicroPythonDeviceInterface.executeAsyncPaste"></a>
-<h4>MicroPythonDeviceInterface.executeAsyncPaste</h4>
-<b>executeAsyncPaste</b>(<i>commandsList</i>)
-
-<p>
-        Public method to execute a series of commands over a period of time
-        without returning any result (asynchronous execution).
-</p>
 <dl>
 
-<dt><i>commandsList</i> (list of bytes)</dt>
+<dt>Raises <b>ValueError</b>:</dt>
 <dd>
-list of commands to be execute on the device
+raised to indicate an unknown submit mode
 </dd>
 </dl>
 <a NAME="MicroPythonDeviceInterface.handlePreferencesChanged" ID="MicroPythonDeviceInterface.handlePreferencesChanged"></a>

eric ide

mercurial