We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 21d3913 + 8f56d7a commit 9f04a81Copy full SHA for 9f04a81
content/firmwareapi/micropython/uos.md
@@ -87,12 +87,16 @@ Alias for the `remove()` method.
87
Mounts a block device (like an SD object) in the specified mount point. Example:
88
89
```python
90
-
91
-os.mount(sd, '/sd')
92
-uos.unmount(path)
+uos.mount(sd, '/sd')
93
```
94
95
-Unmounts a previously mounted block device from the given path.
+#### uos.umount(mount\_point)
+
+Unmounts a previously mounted block device from the specified mount point. Example:
96
97
+```python
98
+uos.umount('/sd')
99
+```
100
101
#### uos.mkfs(block\_device or path)
102
0 commit comments