From 45f99cb4459248116396773a72cc122edbe14a00 Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 20 Nov 2023 19:12:02 +1100 Subject: docs/library: Move vfs functions and classes from os to vfs module docs. Signed-off-by: Damien George --- docs/zephyr/tutorial/storage.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/zephyr/tutorial') diff --git a/docs/zephyr/tutorial/storage.rst b/docs/zephyr/tutorial/storage.rst index 12bd0d0d35..e8dcbbd39a 100644 --- a/docs/zephyr/tutorial/storage.rst +++ b/docs/zephyr/tutorial/storage.rst @@ -6,14 +6,14 @@ Filesystems and Storage Storage modules support virtual filesystem with FAT and littlefs formats, backed by either Zephyr DiskAccess or FlashArea (flash map) APIs depending on which the board supports. -See `os Filesystem Mounting `_. +See `vfs Filesystem Mounting `_. Disk Access ----------- The :ref:`zephyr.DiskAccess ` class can be used to access storage devices, such as SD cards. This class uses `Zephyr Disk Access API `_ and -implements the `os.AbstractBlockDev` protocol. +implements the `vfs.AbstractBlockDev` protocol. For use with SD card controllers, SD cards must be present at boot & not removed; they will be auto detected and initialized by filesystem at boot. Use the disk driver interface and a @@ -39,7 +39,7 @@ customize filesystem configurations. To store persistent data on the device, usi API is recommended (see below). This class uses `Zephyr Flash map API `_ and -implements the `os.AbstractBlockDev` protocol. +implements the `vfs.AbstractBlockDev` protocol. Example usage with the internal flash on the reel_board or the rv32m1_vega_ri5cy board:: -- cgit v1.2.3