zephyr/samples/fs/fat_fs
Ramesh Thomas 9394605211 fs: Add a sample app to demo Zephyr file system API
Demonstrates the Zephyr file system APIs. This currently
runs on FAT FS using RAM emulation of disk.

Origin: Original
Jira: ZEP-285 ZEP-228 ZEP-481 ZEP-446
Change-Id: If459b8c2f819a2a38c8c4d805ec3f689dfcdef17
Signed-off-by: Ramesh Thomas <ramesh.thomas@intel.com>
2016-08-01 16:47:33 -07:00
..
src fs: Add a sample app to demo Zephyr file system API 2016-08-01 16:47:33 -07:00
Makefile fs: Add a sample app to demo Zephyr file system API 2016-08-01 16:47:33 -07:00
README.txt fs: Add a sample app to demo Zephyr file system API 2016-08-01 16:47:33 -07:00
prj.conf fs: Add a sample app to demo Zephyr file system API 2016-08-01 16:47:33 -07:00
testcase.ini fs: Add a sample app to demo Zephyr file system API 2016-08-01 16:47:33 -07:00

README.txt

Title: Zephyr File System Demo

Description:

Demonstrates basic file and dir operations using the Zephyr file system.
--------------------------------------------------------------------------------

Building and Running Project:

While this demo uses RAM to emulate storage, it can be tested using QEMU.

Following command will build it for running on QEMU:

    make qemu

--------------------------------------------------------------------------------

Troubleshooting:

Problems caused by out-dated project information can be addressed by
issuing one of the following commands then rebuilding the project:

    make clean          # discard results of previous builds
                        # but keep existing configuration info
or
    make pristine       # discard results of previous builds
                        # and restore pre-defined configuration info

--------------------------------------------------------------------------------

Sample Output:

File System Demo!

Creating new file testfile.txt
Opened file testfile.txt
Data successfully written!
Data written:"hello world!"

Data successfully read!
Data read:"hello world!"

Closed file testfile.txt
File (testfile.txt) deleted successfully!
Created dir sub1!
Created dir sub2!
Created dir sub1/sub3!
Creating new file testfile.txt
Opened file testfile.txt
Creating new file sub1/testfile.txt
Opened file sub1/testfile.txt
Creating new file sub2/testfile.txt
Opened file sub2/testfile.txt
Creating new file sub1/sub3/file1.txt
Opened file sub1/sub3/file1.txt
Creating new file sub1/sub3/file2.txt
Opened file sub1/sub3/file2.txt
Data successfully written!
Data written:"1"

Data successfully written!
Data written:"12"

Data successfully written!
Data written:"123"

Data successfully written!
Data written:"1234"

Data successfully written!
Data written:"12345"

Closed file testfile.txt
Closed file sub1/testfile.txt
Closed file sub2/testfile.txt
Closed file sub1/sub3/file1.txt
Closed file sub1/sub3/file2.txt

Listing dir /:
[DIR ] SUB1
[DIR ] SUB2
[FILE] TESTFILE.TXT (size = 1)

Listing dir sub1:
[DIR ] SUB3
[FILE] TESTFILE.TXT (size = 2)

Listing dir sub2:
[FILE] TESTFILE.TXT (size = 3)

Listing dir sub1/sub3:
[FILE] FILE1.TXT (size = 4)
[FILE] FILE2.TXT (size = 5)