Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
片上flash能否挂载文件系统
发布于 2019-04-26 15:49:25 浏览:2585
订阅该版
系统没有片外flash,片上flash是否支持文件系统,之前存储简单的配置参数,是直接使用片上flash的地址存储的,现在在rtthread系统中,不知道有挂载文件系统的功能没有。
查看更多
9
个回答
默认排序
按发布时间排序
armink
2019-04-26
这家伙很懒,什么也没写!
可以跑文件系统的,比如 littlefs,只要把 FAL 对接上就行了,
ice_cream
2019-04-26
这家伙很懒,什么也没写!
你们移植好了没?
sober
2019-04-27
这家伙很懒,什么也没写!
>可以跑文件系统的,比如 littlefs,只要把 FAL 对接上就行了, --- 正在研究FAL,看到有片内flash
armink
2019-04-27
这家伙很懒,什么也没写!
>正在研究FAL,看到有片内flash --- stm32 新 bsp 都已经支持 FAL 对接片上 flash 了
sober
2019-04-27
这家伙很懒,什么也没写!
>stm32 新 bsp 都已经支持 FAL 对接片上 flash 了 --- 看到了,例程是F2的例程,默认支持片外flash和片上flash,我的芯片是stm32f103vbt6,没有设计片外flash,研究怎么把片外flash的挂载去掉,不然编译报错
sober
2019-04-28
这家伙很懒,什么也没写!
>你们移植好了没? menuconfig打开fal的支持,在fal_cfg.h中挂载drv_flash_f1驱动就可以了 ```c /* * File : fal_cfg.h * This file is part of FAL (Flash Abstraction Layer) package * COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Change Logs: * Date Author Notes * 2018-05-17 armink the first version */ #ifndef _FAL_CFG_H_ #define _FAL_CFG_H_ #include
#include
#define NOR_FLASH_DEV_NAME "norflash0" /* ===================== Flash device Configuration ========================= */ extern const struct fal_flash_dev stm32_onchip_flash; /* flash device table */ #define FAL_FLASH_DEV_TABLE \ { \ &stm32_onchip_flash, \ } /* ====================== Partition Configuration ========================== */ #ifdef FAL_PART_HAS_TABLE_CFG /* partition table */ #define FAL_PART_TABLE \ { \ {FAL_PART_MAGIC_WORD, "app", "onchip_flash", 0, 64*1024, 0},\ {FAL_PART_MAGIC_WORD, "para", "onchip_flash", 64*1024, 10*1024, 0},\ } #endif /* FAL_PART_HAS_TABLE_CFG */ #endif /* _FAL_CFG_H_ */ ```
tcsun
2019-04-28
这家伙很懒,什么也没写!
我片内的用fal 是可以的,但加littlefs 一直没有搞定,片外的littlefs 是可以的
sober
2019-04-28
这家伙很懒,什么也没写!
>我片内的用fal 是可以的,但加littlefs 一直没有搞定,片外的littlefs 是可以的 我也在研究片上littlefs,错误提示 ``` ``` [E/FAL] (fal_mtd_nor_device_create:340) Error: no memory for create FAL MTD NOR device ``` ``` 不知道需要多大内存支持,rtthread的动态申请使用的是stack还是heap,malloc是rtthread重新封装的
RookieMan
2021-04-23
这家伙很懒,什么也没写!
``` [D/FAL] (fal_flash_init:63) Flash device | onchip_flash | addr: 0x08000000 | len: 0x00080000 | blk_size: 0x00000800 |initialized finish. [I/FAL] ==================== FAL partition table ==================== [I/FAL] | name | flash_dev | offset | length | [I/FAL] ------------------------------------------------------------- [I/FAL] | bl | onchip_flash | 0x00000000 | 0x00008000 | [I/FAL] | app | onchip_flash | 0x00008000 | 0x0005c800 | [I/FAL] | easyflash | onchip_flash | 0x00064800 | 0x00014000 | [I/FAL] | filesystem | onchip_flash | 0x00078800 | 0x00007800 | [I/FAL] ============================================================= [I/FAL] RT-Thread Flash Abstraction Layer (V0.5.0) initialize success. [I/FAL] The FAL block device (filesystem) created successfully format error 01-01 17:09:07 I/sensor main: rt_sensor init success 01-01 17:09:07 I/sensor main: rt_sensor init success 01-01 17:09:07 I/sensor main: rt_sensor init success [Flash] (../packages/EasyFlash-v4.1.0/src/ef_env.c:1818) ENV start address is 0x00000000, size is 40960 bytes. [Flash] EasyFlash V4.1.0 is initialize success. [Flash] You can get the latest version on https://github.com/armink/EasyFlash . 01-01 17:09:07 D/easyflash_param main: easyflash filesystem init success. 01-01 17:09:07 D/easyflash_param main: =============================================== 01-01 17:09:07 D/easyflash_param main: The system now boot 8 times 01-01 17:09:07 D/easyflash_param main: =============================================== 01-01 17:09:07 I/at.clnt main: AT client(V1.3.0) on device uart3 initialize success. 01-01 17:09:07 D/at.dev.sim800 main: start init sim0 device msh />01-01 17:09:07 I/syswatch syswatch: system watch startup successfully ``` @sober 您好,我是用的F103RET6,512k片上flash挂载fat(分区大小30k,配置的处理最大扇区大小为2048)挂载失败,提示`“format error”` 您遇到过这种情况吗?
撰写答案
登录
注册新账号
关注者
0
被浏览
2.6k
关于作者
sober
这家伙很懒,什么也没写!
提问
18
回答
59
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用RC522软件包驱动FM1722
2
常量数据类型和表达式陷阱分享
3
进行i2c驱动移植的经验总结
4
在VSCode中使用clang-format
5
我该如何使用这个微雪的WIFI400 WIFI-LPB-100在rtt里或者我该怎样为它开发驱动
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
freemodbus
PWM
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
289
次被采纳
张世争
809
个答案
175
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
catcatbing
3
篇文章
5
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
5
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部