diff --git a/content/firmwareapi/micropython/uos.md b/content/firmwareapi/micropython/uos.md index ef6d3b5..2df84d6 100644 --- a/content/firmwareapi/micropython/uos.md +++ b/content/firmwareapi/micropython/uos.md @@ -87,12 +87,16 @@ Alias for the `remove()` method. Mounts a block device (like an SD object) in the specified mount point. Example: ```python - -os.mount(sd, '/sd') -uos.unmount(path) +uos.mount(sd, '/sd') ``` -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: + +```python +uos.umount('/sd') +``` #### uos.mkfs(block\_device or path)