File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2126,7 +2126,13 @@ asyncio.run(run())
2126
2126
2127
2127
## 6.3 Using the stream mechanism
2128
2128
2129
- This can be illustrated using a Pyboard UART. The following code sample
2129
+ This section applies to platforms other than the Unix build. The latter handles
2130
+ stream I/O in a different way described
2131
+ [ here] ( https://github.com/micropython/micropython/issues/7965#issuecomment-960259481 ) .
2132
+ Code samples may not run under the Unix build until it is made more compatible
2133
+ with other platforms.
2134
+
2135
+ The stream mechanism can be illustrated using a Pyboard UART. This code sample
2130
2136
demonstrates concurrent I/O on one UART. To run, link Pyboard pins X1 and X2
2131
2137
(UART Txd and Rxd).
2132
2138
@@ -2267,8 +2273,7 @@ class MyIO(io.IOBase):
2267
2273
return ret
2268
2274
```
2269
2275
2270
- The following is a complete awaitable delay class. Please note that it does not
2271
- run on the Unix port (under investigation).
2276
+ The following is a complete awaitable delay class.
2272
2277
``` python
2273
2278
import uasyncio as asyncio
2274
2279
import utime
You can’t perform that action at this time.
0 commit comments