diff options
author | Damien George <damien.p.george@gmail.com> | 2014-12-27 20:20:51 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-12-27 20:20:51 +0000 |
commit | 7690b13953162dcf398619bbfa6809d3d4e7dc67 (patch) | |
tree | 3939a3ccf3ad0bb664282aa0e9c6077f50808826 /docs | |
parent | e2745b307b9fd81d36847d75d40a53e597e5a125 (diff) | |
download | micropython-7690b13953162dcf398619bbfa6809d3d4e7dc67.tar.gz micropython-7690b13953162dcf398619bbfa6809d3d4e7dc67.zip |
stmhal: Add ability to mount custom block device.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/pyb.rst | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/library/pyb.rst b/docs/library/pyb.rst index 8af0090c14..3d05a40a74 100644 --- a/docs/library/pyb.rst +++ b/docs/library/pyb.rst @@ -154,6 +154,37 @@ Miscellaneous functions Print out lots of information about the board. +.. function:: mount(device, mountpoint, \*, readonly=False, mkfs=False) + + Mount a block device and make it available as part of the filesystem. + ``device`` must be an object that provides the block protocol: + + - ``readblocks(self, blocknum, buf)`` + - ``writeblocks(self, blocknum, buf)`` (optional) + - ``count(self)`` + - ``sync(self)`` (optional) + + ``readblocks`` and ``writeblocks`` should copy data between ``buf`` and + the block device, starting from block number ``blocknum`` on the device. + ``buf`` will be a bytearray with length a multiple of 512. If + ``writeblocks`` is not defined then the device is mounted read-only. + The return value of these two functions is ignored. + + ``count`` should return the number of blocks available on the device. + ``sync``, if implemented, should sync the data on the device. + + The parameter ``mountpoint`` is the location in the root of the filesystem + to mount the device. It must begin with a forward-slash. + + If ``readonly`` is ``True``, then the device is mounted read-only, + otherwise it is mounted read-write. + + If ``mkfs`` is ``True``, then a new filesystem is created if one does not + already exist. + + To unmount a device, pass ``None`` as the device and the mount location + as ``mountpoint``. + .. function:: repl_uart(uart) Get or set the UART object that the REPL is repeated on. |