What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
问题描述
我在板上安装了 DSP tms320vc5509a 和 NOR flash AT26DF321,我将在闪存上存储命名数据.我不需要目录层次结构、磨损均衡(我希望系统很少写入闪存),但强烈需要 CRC.谢谢
I've got DSP tms320vc5509a and NOR flash AT26DF321 on the board and I'm going to store named data on the flash. I don't need directory hierarchy, wear leveling (I hope system will write to flash very few times), but CRC is strongly needed. Thank you
推荐答案
你可以看看 ELM-Petit FAT 文件系统模块 用于实现良好的小型文件系统.不确定它是否具有 CRC,但您可以将其添加到低级硬件驱动程序中.
You could look at the ELM-Petit FAT File System Module for an good small file system implementation. Not sure that it has CRC but you can add that to your low-level hardware drivers.
这篇关于您可以为嵌入式系统推荐什么免费的最小闪存文件系统?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您可以为嵌入式系统推荐什么免费的最小闪存文件系统?
基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17