spiffs

2025-12-11 0 431

SPIFFS (SPI Flash File System)

V0.3.7

Copyright (c) 2013-2017 Peter Andersson (pelleplutt1976 at gmail.com)

For legal stuff, see LICENSE. Basically, you may do whatever you want with the source. Use, modify, sell, print it out, roll it and smoke it – as long as I won\’t be held responsible.

Love to hear feedback though!

INTRODUCTION

Spiffs is a file system intended for SPI NOR flash devices on embedded targets.

Spiffs is designed with following characteristics in mind:

  • Small (embedded) targets, sparse RAM without heap
  • Only big areas of data (blocks) can be erased
  • An erase will reset all bits in block to ones
  • Writing pulls one to zeroes
  • Zeroes can only be pulled to ones by erase
  • Wear leveling

BUILDING

mkdir build; make

Otherwise, configure the builddir variable towards the top of makefile as something opposed to the default build. Sanity check on the host via make test and refer to .travis.yml for the official in-depth testing procedure. See the wiki for integrating spiffs into projects and spiffsimg from nodemcu is a good example on the subject.

FEATURES

What spiffs does:

  • Specifically designed for low ram usage
  • Uses statically sized ram buffers, independent of number of files
  • Posix-like api: open, close, read, write, seek, stat, etc
  • It can run on any NOR flash, not only SPI flash – theoretically also on embedded flash of a microprocessor
  • Multiple spiffs configurations can run on same target – and even on same SPI flash device
  • Implements static wear leveling
  • Built in file system consistency checks
  • Highly configurable

What spiffs does not:

  • Presently, spiffs does not support directories. It produces a flat structure. Creating a file with path tmp/myfile.txt will create a file called tmp/myfile.txt instead of a myfile.txt under directory tmp.
  • It is not a realtime stack. One write operation might last much longer than another.
  • Poor scalability. Spiffs is intended for small memory devices – the normal sizes for SPI flashes. Going beyond ~128Mbyte is probably a bad idea. This is a side effect of the design goal to use as little ram as possible.
  • Presently, it does not detect or handle bad blocks.
  • One configuration, one binary. There\’s no generic spiffs binary that handles all types of configurations.

NOTICE

0.4.0 is under construction. This is a full rewrite and will change the underlying structure. Hence, it will not be compatible with earlier versions of the filesystem. The API is the same, with minor modifications. Some config flags will be removed (as they are mandatory in 0.4.0) and some features might fall away until 0.4.1. If you have any worries or questions, it can be discussed in issue #179

MORE INFO

See the wiki for configuring, integrating, using, and optimizing spiffs.

For design, see docs/TECH_SPEC.

For a generic spi flash driver, see this.

HISTORY

0.3.7

  • fixed prevent seeking to negative offsets #158
  • fixed file descriptor offsets not updated for multiple fds on same file #157
  • fixed cache page not closed for removed files #156
  • fixed a lseek bug when seeking exactly to end of a fully indexed first level LUT #148
  • fixed wear leveling issue #145
  • fixed attempt to write out of bounds in flash #130,
  • set file offset when seeking over end #121 (thanks @sensslen)
  • fixed seeking in virgin files #120 (thanks @sensslen)
  • Optional file metadata #128 (thanks @cesanta)
  • AFL testing framework #100 #143 (thanks @pjsg)
  • Testframe updates

New API functions:

  • SPIFFS_update_meta, SPIFFS_fupdate_meta – updates metadata for a file

New config defines:

  • SPIFFS_OBJ_META_LEN – enable possibility to add extra metadata to files

0.3.6

  • Fix range bug in index memory mapping #98
  • Add index memory mapping #97
  • Optimize SPIFFS_read for large files #96
  • Add temporal cache for opening files #95
  • More robust gc #93 (thanks @dismirlian)
  • Fixed a double write of same data in certain cache situations
  • Fixed an open bug in READ_ONLY builds
  • File not visible in SPIFFS_readdir #90 (thanks @benpicco-tmp)
  • Cache load code cleanup #92 (thanks @niclash)
  • Fixed lock/unlock asymmetry #88 #87 (thanks @JackJefferson, @dpruessner)
  • Testframe updates

New API functions:

  • SPIFFS_ix_map – map index meta data to memory for a file
  • SPIFFS_ix_unmap – unmaps index meta data for a file
  • SPIFFS_ix_remap – changes file offset for index metadata map
  • SPIFFS_bytes_to_ix_map_entries – utility, get length of needed vector for given amount of bytes
  • SPIFFS_ix_map_entries_to_bytes – utility, get number of bytes a vector can represent given length

New config defines:

  • SPIFFS_IX_MAP – enable possibility to map index meta data to memory for reading faster
  • SPIFFS_TEMPORAL_FD_CACHE – enable temporal cache for opening files faster
  • SPIFFS_TEMPORAL_CACHE_HIT_SCORE – for tuning the temporal cache

0.3.5

  • Fixed a bug in fs check
  • API returns actual error codes #84) (thanks @Nails)
  • Fix compiler warnings for non-gcc #83 #81 (thanks @Nails)
  • Unable to recover from full fs #82 (thanks @rojer)
  • Define SPIFFS_O_* flags #80
  • Problem with long filenames #79 (thanks @psjg)
  • Duplicate file name bug fix #74 (thanks @igrr)
  • SPIFFS_eof and SPIFFS_tell return wrong value #72 (thanks @ArtemPisarenko)
  • Bunch of testframe updates #77 #78 #86 (thanks @dpreussner, @psjg a.o)

0.3.4

  • Added user callback file func.
  • Fixed a stat bug with obj id.
  • SPIFFS_probe_fs added
  • Add possibility to compile a read-only version of spiffs
  • Make magic dependent on fs length, if needed (see #59 & #66) (thanks @hreintke)
  • Exposed SPIFFS_open_by_page_function
  • Zero-size file cannot be seek #57 (thanks @lishen2)
  • Add tell and eof functions #54 (thanks @raburton)
  • Make api string params const #53 (thanks @raburton)
  • Preserve user_data during mount() #51 (thanks @rojer)

New API functions:

  • SPIFFS_set_file_callback_func – register a callback informing about file events
  • SPIFFS_probe_fs – probe a spi flash trying to figure out size of fs
  • SPIFFS_open_by_page – open a file by page index
  • SPIFFS_eof – checks if end of file is reached
  • SPIFFS_tell – returns current file offset

New config defines:

  • SPIFFS_READ_ONLY
  • SPIFFS_USE_MAGIC_LENGTH

0.3.3

Might not be compatible with 0.3.2 structures. See issue #40

  • Possibility to add integer offset to file handles
  • Truncate function presumes too few free pages #49
  • Bug in truncate function #48 (thanks @PawelDefee)
  • Update spiffs_gc.c – remove unnecessary parameter (thanks @PawelDefee)
  • Update INTEGRATION docs (thanks @PawelDefee)
  • Fix pointer truncation in 64-bit platforms (thanks @igrr)
  • Zero-sized files cannot be read #44 (thanks @rojer)
  • (More) correct calculation of max_id in obj_lu_find #42 #41 (thanks @lishen2)
  • Check correct error code in obj_lu_find_free #41 (thanks @lishen2)
  • Moar comments for SPIFFS_lseek (thanks @igrr)
  • Fixed padding in spiffs_page_object_ix #40 (thanks @jmattsson @lishen2)
  • Fixed gc_quick test (thanks @jmattsson)
  • Add SPIFFS_EXCL flag #36
  • SPIFFS_close may fail silently if cache is enabled #37
  • User data in callbacks #34
  • Ignoring SINGLETON build in cache setup (thanks Luca)
  • Compilation error fixed #32 (thanks @chotasanjiv)
  • Align cand_scores (thanks @hefloryd)
  • Fix build warnings when SPIFFS_CACHE is 0 (thanks @ajaybhargav)

New config defines:

  • SPIFFS_FILEHDL_OFFSET

0.3.2

  • Limit cache size if too much cache is given (thanks pgeiem)
  • New feature – Controlled erase. #23
  • SPIFFS_rename leaks file descriptors #28 (thanks benpicco)
  • moved dbg print defines in test framework to params_test.h
  • lseek should return the resulting offset (thanks hefloryd)
  • fixed type on dbg ifdefs
  • silence warning about signed/unsigned comparison when spiffs_obj_id is 32 bit (thanks benpicco)
  • Possible error in test_spiffs.c #21 (thanks yihcdaso-yeskela)
  • Cache might writethrough too often #16
  • even moar testrunner updates
  • Test framework update and some added tests
  • Some thoughts for next gen
  • Test sigsevs when having too many sectors #13 (thanks alonewolfx2)
  • GC might be suboptimal #11
  • Fix eternal readdir when objheader at last block, last entry

New API functions:

  • SPIFFS_gc_quick – call a nonintrusive gc
  • SPIFFS_gc – call a full-scale intrusive gc

0.3.1

  • Removed two return warnings, was too triggerhappy on release

0.3.0

  • Added existing namecheck when creating files
  • Lots of static analysis bugs #6
  • Added rename func
  • Fix SPIFFS_read length when reading beyond file size
  • Added reading beyond file length testcase
  • Made build a bit more configurable
  • Changed name in spiffs from \”errno\” to \”err_code\” due to conflicts compiling in mingw
  • Improved GC checks, fixed an append bug, more robust truncate for very special case
  • GC checks preempts GC, truncate even less picky
  • Struct alignment needed for some targets, define in spiffs config #10
  • Spiffs filesystem magic, definable in config

New config defines:

  • SPIFFS_USE_MAGIC – enable or disable magic check upon mount
  • SPIFFS_ALIGNED_OBJECT_INDEX_TABLES – alignment for certain targets

New API functions:

  • SPIFFS_rename – rename files
  • SPIFFS_clearerr – clears last errno
  • SPIFFS_info – returns info on used and total bytes in fs
  • SPIFFS_format – formats the filesystem
  • SPIFFS_mounted – checks if filesystem is mounted

下载源码

通过命令行克隆项目:

git clone https://github.com/pellepl/spiffs.git

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

申明:本文由第三方发布,内容仅代表作者观点,与本网站无关。对本文以及其中全部或者部分内容的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。本网发布或转载文章出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,也不代表本网对其真实性负责。

左子网 建站资源 spiffs https://www.zuozi.net/34878.html

awesome design
上一篇: awesome design
terminalizer
下一篇: terminalizer
常见问题
  • 1、自动:拍下后,点击(下载)链接即可下载;2、手动:拍下后,联系卖家发放即可或者联系官方找开发者发货。
查看详情
  • 1、源码默认交易周期:手动发货商品为1-3天,并且用户付款金额将会进入平台担保直到交易完成或者3-7天即可发放,如遇纠纷无限期延长收款金额直至纠纷解决或者退款!;
查看详情
  • 1、描述:源码描述(含标题)与实际源码不一致的(例:货不对板); 2、演示:有演示站时,与实际源码小于95%一致的(但描述中有”不保证完全一样、有变化的可能性”类似显著声明的除外); 3、发货:不发货可无理由退款; 4、安装:免费提供安装服务的源码但卖家不履行的; 5、收费:价格虚标,额外收取其他费用的(但描述中有显著声明或双方交易前有商定的除外); 6、其他:如质量方面的硬性常规问题BUG等。 注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。
查看详情
  • 1、左子会对双方交易的过程及交易商品的快照进行永久存档,以确保交易的真实、有效、安全! 2、左子无法对如“永久包更新”、“永久技术支持”等类似交易之后的商家承诺做担保,请买家自行鉴别; 3、在源码同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外); 4、在没有”无任何正当退款依据”的前提下,商品写有”一旦售出,概不支持退款”等类似的声明,视为无效声明; 5、在未拍下前,双方在QQ上所商定的交易内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准); 6、因聊天记录可作为纠纷评判依据,故双方联系时,只与对方在左子上所留的QQ、手机号沟通,以防对方不承认自我承诺。 7、虽然交易产生纠纷的几率很小,但一定要保留如聊天记录、手机短信等这样的重要信息,以防产生纠纷时便于左子介入快速处理。
查看详情

相关文章

猜你喜欢
发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务