0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

FAL組件和DFS文件系統(tǒng)的功能特點(diǎn)和使用方法

恩智浦MCU加油站 ? 來源:恩智浦MCU加油站 ? 作者:恩智浦MCU加油站 ? 2023-06-15 09:21 ? 次閱讀

FAL組件
什么是FAL?

FAL (Flash Abstraction Layer)Flash 抽象層,是對(duì) Flash 及基于 Flash 的分區(qū)進(jìn)行管理、操作的抽象層,對(duì)上層統(tǒng)一了 Flash 及 分區(qū)操作的 API (框架圖如下所示),并具有以下特性:

支持靜態(tài)可配置的分區(qū)表,并可關(guān)聯(lián)多個(gè) Flash 設(shè)備;

分區(qū)表支持自動(dòng)裝載。避免在多固件項(xiàng)目,分區(qū)表被多次定義的問題;

代碼精簡,對(duì)操作系統(tǒng)無依賴,可運(yùn)行于裸機(jī)平臺(tái),比如對(duì)資源有一定要求的 Bootloader;

統(tǒng)一的操作接口。保證了文件系統(tǒng)、OTA、NVM(例如:EasyFlash) 等對(duì) Flash 有一定依賴的組件,底層 Flash 驅(qū)動(dòng)的可重用性;

自帶基于 Finsh/MSH 的測試命令,可以通過 Shell 按字節(jié)尋址的方式操作(讀寫擦) Flash 或分區(qū),方便開發(fā)者進(jìn)行調(diào)試、測試;

ac864482-0b15-11ee-962d-dac502259ad0.png

通過上圖可以清晰明了看到,F(xiàn)AL抽象層向下可以通過Flash硬件進(jìn)行統(tǒng)一管理,當(dāng)然也可以使用SFUD框架(串行Flash通用驅(qū)動(dòng)庫,這部分RT-Thread官方已完成框架的移植同時(shí)提供多個(gè)應(yīng)用歷程),而對(duì)上也可以使用如DFS、NVM提供的Flash硬件統(tǒng)一訪問接口,方便用戶更加直接方便對(duì)底層flash硬件的訪問操作。 注:非易失性存儲(chǔ)器 (NVM):在芯片電源關(guān)閉期間保存存儲(chǔ)在其中的數(shù)據(jù)。因此,它被用于沒有磁盤的便攜式設(shè)備中的內(nèi)存,以及用于可移動(dòng)存儲(chǔ)卡等用途。主要類型有:非易失性半導(dǎo)體存儲(chǔ)器 (Non-volatile semiconductor memory, NVSM) 將數(shù)據(jù)存儲(chǔ)在浮柵存儲(chǔ)單元中,每個(gè)單元都由一個(gè)浮柵(floating-gate) MOSFET 組成。

關(guān)于存儲(chǔ),可以用一張圖來解釋:

acabb8ca-0b15-11ee-962d-dac502259ad0.png

FAL組件使用ENV配置FAL

在RT-Thread v4.1.0之前,F(xiàn)AL是作為軟件包形式對(duì)用戶開放使用的,而v4.1.0之后,F(xiàn)AL被RT-Thread官方重新定義為RTT組件的一部分,這樣也能更加方便用戶的開發(fā)。

下面正式講解FAL組件的使用:

首先打開ENV工具,根據(jù)以下路徑打開FAL使能RT-Thread Components->FAL: flash abstraction layer,由于后面會(huì)用到SFUD,所以這里把FAL uses SFUD drivers一并使能,并修改FAL設(shè)備名稱為W25Q128.

acc823ac-0b15-11ee-962d-dac502259ad0.png

完成上述操作后保存退出,并使用scons --target=mdk5重新生成MDK5文件并打開。

FAL組件FAL SFUD移植

示例選用W25Q128 spi flash作為測試模塊,并且使用SFUD框架對(duì)spi flash設(shè)備進(jìn)行管理和驅(qū)動(dòng)。 由于目前RT-Thread的SFUD已經(jīng)對(duì)W25Q128完成支持,根據(jù)官方的使用手冊(cè),僅需編寫fal_cfg.h文件完成對(duì)FAL_FLASH_DEV_TABLE及FAL_PART_TABLE的定義即可。文件存放路徑:. t-threadsplpc55sxxlpc55s69_nxp_evkoardportsfal_cfg.h

// fal.cfg.h
/*
  * Copyright (c) 2006-2023, RT-Thread Development Team
  *
  * SPDX-License-Identifier: Apache-2.0
  *
  * Change Logs:
  * Date           Author       Notes
  * 2023-04-21     Wangyuqiang  the first version
  */
#ifndef _FAL_CFG_H_
#define _FAL_CFG_H_


#include 
#include 


#ifndef FAL_USING_NOR_FLASH_DEV_NAME
#define NOR_FLASH_DEV_NAME             "norflash0"
#else
#define NOR_FLASH_DEV_NAME              FAL_USING_NOR_FLASH_DEV_NAME
#endif


/* Flash device Configuration */


extern struct fal_flash_dev nor_flash0;


/* flash device table */


#define FAL_FLASH_DEV_TABLE                                          
{                                                                    
     &nor_flash0,                                                     
}


/* Partition Configuration */


#ifdef FAL_PART_HAS_TABLE_CFG


/* partition table */


#define FAL_PART_TABLE                                                                                                  
{                                                                                                                       
     {FAL_PART_MAGIC_WROD,  "easyflash", NOR_FLASH_DEV_NAME,                                    0,       512 * 1024, 0}, 
     {FAL_PART_MAGIC_WROD,   "download", NOR_FLASH_DEV_NAME,                           512 * 1024,      1024 * 1024, 0}, 
     {FAL_PART_MAGIC_WROD, "wifi_image", NOR_FLASH_DEV_NAME,                  (512 + 1024) * 1024,       512 * 1024, 0}, 
     {FAL_PART_MAGIC_WROD,       "font", NOR_FLASH_DEV_NAME,            (512 + 1024 + 512) * 1024,  7 * 1024 * 1024, 0}, 
     {FAL_PART_MAGIC_WROD, "filesystem", NOR_FLASH_DEV_NAME, (512 + 1024 + 512 + 7 * 1024) * 1024,  7 * 1024 * 1024, 0}, 
}
#endif /* FAL_PART_HAS_TABLE_CFG */
#endif /* _FAL_CFG_H_ */

此時(shí)編譯的話是找不到該頭文件的,需要在Keil中設(shè)置:

acdd5c36-0b15-11ee-962d-dac502259ad0.png

在RTT FAL組件中的SFUD提供的fal_flash_dev對(duì)象默認(rèn)的nor_flash0參數(shù)中,flash大小默認(rèn)為8M,而W25Q128最大最16M,可以選擇在. t-threadcomponentsfalsamplesportingfal_flash_sfud_port.c文件中對(duì)struct fal_flash_dev nor_flash0進(jìn)行修改:

struct fal_flash_dev nor_flash0 =
{
     .name       = FAL_USING_NOR_FLASH_DEV_NAME,
     .addr       = 0,
     .len        = 16 * 1024 * 1024,
     .blk_size   = 4096,
     .ops        = {init, read, write, erase},
     .write_gran = 1
};

當(dāng)然也可以選擇不進(jìn)行修改,專家的原話是因?yàn)樵谡{(diào)用初始化接口函數(shù)init后,會(huì)從flash設(shè)備讀取正確的參數(shù)更新到nor_flash0表項(xiàng)中,在使用FAL組件前都需要調(diào)用FAL初始化函數(shù)fal_init,其內(nèi)調(diào)用flash設(shè)備初始化函數(shù)fal_flash_init,最后會(huì)調(diào)用注冊(cè)到fal_flash_dev設(shè)備表項(xiàng)中的初始化函數(shù)device_table->ops.init,所以nor_flash0表項(xiàng)參數(shù)會(huì)在FAL初始化時(shí)被更新。

同時(shí)需要開啟SFUD框架支持,打開ENV工具,由于SFUD的使用需要指定一個(gè)spi設(shè)備,這里我選擇使用最近移植好的軟件spi,路徑Hardware Drivers Config->On-chip Peripheral Drivers-> Enable soft SPI BUS->Enable soft SPI1 BUS (software simulation),這里的測試開發(fā)板是恩智浦LPC55S69-EVK,并且這款BSP的軟件模擬SPI由我本人對(duì)接,關(guān)于這部分的軟件SPI引腳定義可以選用默認(rèn)即可,當(dāng)然也可以使用自定義引腳,只要不與其他引腳產(chǎn)生沖突。

acfab524-0b15-11ee-962d-dac502259ad0.png

此時(shí)回到ENV主界面,進(jìn)入RT-Thread Components->Device Drivers->Using Serial Flash Universal Driver,此時(shí)才可以看到SFUD選項(xiàng)出現(xiàn)(如果沒有使能SPI則無法看到),使能后保持默認(rèn)。

ad073fce-0b15-11ee-962d-dac502259ad0.png

FAL組件FAL SFUD測試用例

為了驗(yàn)證W25Q128及軟件模擬SPI在SFUD框架上是否能夠成功運(yùn)行,在. t-threadsplpc55sxxlpc55s69_nxp_evkoardports下新建一個(gè)soft_spi_flash_init.c文件,代碼如下:

/*
  * Copyright (c) 2006-2023, RT-Thread Development Team
  *
  * SPDX-License-Identifier: Apache-2.0
  *
  * Change Logs:
  * Date           Author       Notes
  * 2023-04-21     Wangyuqiang  the first version
  */


#include 
#include "spi_flash.h"
#include "spi_flash_sfud.h"
#include "drv_soft_spi.h"
#include "drv_pin.h"
#include "rtconfig.h"


#define cs_pin  GET_PINS(1,9)


static int rt_soft_spi_flash_init(void)
{
int result = -1;


     result = rt_hw_softspi_device_attach("sspi1", "sspi10", cs_pin);
     rt_kprintf("value is %d
",result);


if(result == RT_EOK)
     {
         rt_kprintf("rt_hw_softspi_device_attach successful!
");
     }


if (RT_NULL == rt_sfud_flash_probe("W25Q128", "sspi10"))
     {
return -RT_ERROR;
     }


return RT_EOK;
}
INIT_COMPONENT_EXPORT(rt_soft_spi_flash_init);

這里需要指定一個(gè)片選引腳,這里暫時(shí)使用了SSPI2的SCK引腳作為片選,需要注意不要同時(shí)打開SSPI1和SSPI2,后續(xù)我會(huì)專門上傳一個(gè)通用GPIO作為片選引腳,避免產(chǎn)生問題。然后軟件SPI設(shè)備的掛載使用的是SSPI1 bus及SSPI10 device,并且掛載flash設(shè)備到SSPI10。

在 . t-threadsplpc55sxxlpc55s69_nxp_evkoardports 下新建fal_sample.c文件,并編寫測試代碼:

//fal_sample.c


/*
  * Copyright (c) 2006-2023, RT-Thread Development Team
  *
  * SPDX-License-Identifier: Apache-2.0
  *
  * Change Logs:
  * Date           Author       Notes
  * 2023-04-21     Wangyuqiang  the first version
  */


#include "rtthread.h"
#include "rtdevice.h"
#include "board.h"
#include "fal.h"


#define BUF_SIZE 1024


static int fal_test(const char *partiton_name)
{
int ret;
int i, j, len;
     uint8_t buf[BUF_SIZE];
const struct fal_flash_dev *flash_dev = RT_NULL;
const struct fal_partition *partition = RT_NULL;


if (!partiton_name)
     {
         rt_kprintf("Input param partition name is null!
");
return -1;
     }


     partition = fal_partition_find(partiton_name);
if (partition == RT_NULL)
     {
         rt_kprintf("Find partition (%s) failed!
", partiton_name);
         ret = -1;
return ret;
     }


     flash_dev = fal_flash_device_find(partition->flash_name);
if (flash_dev == RT_NULL)
     {
         rt_kprintf("Find flash device (%s) failed!
", partition->flash_name);
         ret = -1;
return ret;
     }


     rt_kprintf("Flash device : %s   "
"Flash size : %dK   
"
"Partition : %s   "
"Partition size: %dK
",
                 partition->flash_name,
                 flash_dev->len/1024,
                 partition->name,
                 partition->len/1024);


/* erase all partition */
     ret = fal_partition_erase_all(partition);
if (ret < 0)
     {
         rt_kprintf("Partition (%s) erase failed!
", partition->name);
         ret = -1;
return ret;
     }
     rt_kprintf("Erase (%s) partition finish!
", partiton_name);


/* read the specified partition and check data */
for (i = 0; i < partition->len;)
     {
         rt_memset(buf, 0x00, BUF_SIZE);


len = (partition->len - i) > BUF_SIZE ? BUF_SIZE : (partition->len - i);


         ret = fal_partition_read(partition, i, buf, len);
if (ret < 0)
         {
             rt_kprintf("Partition (%s) read failed!
", partition->name);
             ret = -1;
return ret;
         }


for(j = 0; j < len; j++)
         {
if (buf[j] != 0xFF)
             {
                 rt_kprintf("The erase operation did not really succeed!
");
                 ret = -1;
return ret;
             }
         }
         i += len;
     }


/* write 0x00 to the specified partition */
for (i = 0; i < partition->len;)
     {
         rt_memset(buf, 0x00, BUF_SIZE);


len = (partition->len - i) > BUF_SIZE ? BUF_SIZE : (partition->len - i);


         ret = fal_partition_write(partition, i, buf, len);
if (ret < 0)
         {
             rt_kprintf("Partition (%s) write failed!
", partition->name);
             ret = -1;
return ret;
         }


         i += len;
     }
     rt_kprintf("Write (%s) partition finish! Write size %d(%dK).
", partiton_name, i, i/1024);


/* read the specified partition and check data */
for (i = 0; i < partition->len;)
     {
         rt_memset(buf, 0xFF, BUF_SIZE);


len = (partition->len - i) > BUF_SIZE ? BUF_SIZE : (partition->len - i);


         ret = fal_partition_read(partition, i, buf, len);
if (ret < 0)
         {
             rt_kprintf("Partition (%s) read failed!
", partition->name);
             ret = -1;
return ret;
         }


for(j = 0; j < len; j++)
         {
if (buf[j] != 0x00)
             {
                 rt_kprintf("The write operation did not really succeed!
");
                 ret = -1;
return ret;
             }
         }


         i += len;
     }


     ret = 0;
return ret;
}


static void fal_sample(void)
{
/* 1- init */
     fal_init();


if (fal_test("font") == 0)
     {
         rt_kprintf("Fal partition (%s) test success!
", "font");
     }
else
     {
         rt_kprintf("Fal partition (%s) test failed!
", "font");
     }


if (fal_test("download") == 0)
     {
         rt_kprintf("Fal partition (%s) test success!
", "download");
     }
else
     {
         rt_kprintf("Fal partition (%s) test failed!
", "download");
     }
}
MSH_CMD_EXPORT(fal_sample, fal sample);
FAL組件測試結(jié)果 打開串口工具,輸入命令:
msh/>easyflash_sample
這里就可以進(jìn)行編譯下載了,成功后的截圖如下:

ad2d0f2e-0b15-11ee-962d-dac502259ad0.png

DFS文件系統(tǒng)什么是DFS?

DFS 是 RT-Thread 提供的虛擬文件系統(tǒng)組件,全稱為 Device File System,即設(shè)備虛擬文件系統(tǒng),文件系統(tǒng)的名稱使用類似 UNIX 文件、文件夾的風(fēng)格,目錄結(jié)構(gòu)如下圖所示:

ad4cde26-0b15-11ee-962d-dac502259ad0.png

在 RT-Thread DFS 中,文件系統(tǒng)有統(tǒng)一的根目錄,使用 / 來表示。而在根目錄下的 f1.bin 文件則使用 /f1.bin 來表示,2018 目錄下的 f1.bin 目錄則使用 /data/2018/f1.bin 來表示。即目錄的分割符號(hào)是 /,這與 UNIX/Linux 完全相同,與 Windows 則不相同(Windows 操作系統(tǒng)上使用 來作為目錄的分割符)。

DFS文件系統(tǒng) DFS架構(gòu)

RT-Thread DFS 組件的主要功能特點(diǎn)有:

為應(yīng)用程序提供統(tǒng)一的 POSIX 文件和目錄操作接口:read、write、poll/select 等;

支持多種類型的文件系統(tǒng),如 FatFS、RomFS、DevFS 等,并提供普通文件、設(shè)備文件、網(wǎng)絡(luò)文件描述符的管理;

支持多種類型的存儲(chǔ)設(shè)備,如 SD Card、SPI Flash、Nand Flash 等;

DFS 的層次架構(gòu)主要分為 POSIX 接口層、虛擬文件系統(tǒng)層和設(shè)備抽象層;

DFS文件系統(tǒng)使用ENV配置DFS

打開ENV, 進(jìn)入路徑RT-Thread Components → DFS: device virtual file system,使能DFS: device virtual file system

ad6d9f1c-0b15-11ee-962d-dac502259ad0.png

由于DFS使用的是POSIX接口,而dfs_posix.h已經(jīng)在新版本中移除了,如果想要兼容老版本,可在menuconfig中使能RT-Thread Components->Support legacy version for compatibility

ad947e8e-0b15-11ee-962d-dac502259ad0.png

由于elmfat文件系統(tǒng)默認(rèn)最大扇區(qū)大小為512,但這里使用的flash模塊W25Q128的Flash扇區(qū)大小為4096,為了將elmfat文件系統(tǒng)掛載到W25Q128上,Maximum sector size需要和W25Q128扇區(qū)大小保持一致,修改為4096,路徑:RT-Thread Components → DFS: device virtual file system → Enable elm-chan fatfs / elm-chan's FatFs, Generic FAT Filesystem Module

ada86354-0b15-11ee-962d-dac502259ad0.png

保存退出后使用scons --target=mdk5生成MDK5工程。

DFS文件系統(tǒng)DFS掛載到FAL分區(qū)測試

這里增加FAL flash抽象層,將elmfat文件系統(tǒng)掛載到W25Q128 flash設(shè)備的filesystem分區(qū)上,由于FAL管理的filesystem分區(qū)不是塊設(shè)備,需要先使用FAL分區(qū)轉(zhuǎn)BLK設(shè)備接口函數(shù)將filesystem分區(qū)轉(zhuǎn)換為塊設(shè)備,然后再將DFS elmfat文件系統(tǒng)掛載到filesystem塊設(shè)備上。

接下來修改fal_sample.c文件,修改后代碼:

/*
  * Copyright (c) 2006-2023, RT-Thread Development Team
  *
  * SPDX-License-Identifier: Apache-2.0
  *
  * Change Logs:
  * Date           Author       Notes
  * 2023-04-21     Wangyuqiang  the first version
  */


#include "rtthread.h"
#include "rtdevice.h"
#include "board.h"
#include "fal.h"


#include 


#define FS_PARTITION_NAME  "filesystem"


#define BUF_SIZE 1024


static int fal_test(const char *partiton_name)
{
int ret;
int i, j, len;
uint8_t buf[BUF_SIZE];
const struct fal_flash_dev *flash_dev = RT_NULL;
const struct fal_partition *partition = RT_NULL;


if (!partiton_name)
     {
         rt_kprintf("Input param partition name is null!
");
return -1;
     }


     partition = fal_partition_find(partiton_name);
if (partition == RT_NULL)
     {
         rt_kprintf("Find partition (%s) failed!
", partiton_name);
         ret = -1;
return ret;
     }


     flash_dev = fal_flash_device_find(partition->flash_name);
if (flash_dev == RT_NULL)
     {
         rt_kprintf("Find flash device (%s) failed!
", partition->flash_name);
         ret = -1;
return ret;
     }


     rt_kprintf("Flash device : %s   "
"Flash size : %dK   
"
"Partition : %s   "
"Partition size: %dK
",
                 partition->flash_name,
                 flash_dev->len/1024,
                 partition->name,
                 partition->len/1024);


/* erase all partition */
     ret = fal_partition_erase_all(partition);
if (ret < 0)
     {
         rt_kprintf("Partition (%s) erase failed!
", partition->name);
         ret = -1;
return ret;
     }
     rt_kprintf("Erase (%s) partition finish!
", partiton_name);


/* read the specified partition and check data */
for (i = 0; i < partition->len;)
     {
         rt_memset(buf, 0x00, BUF_SIZE);


         len = (partition->len - i) > BUF_SIZE ? BUF_SIZE : (partition->len - i);


         ret = fal_partition_read(partition, i, buf, len);
if (ret < 0)
         {
             rt_kprintf("Partition (%s) read failed!
", partition->name);
             ret = -1;
return ret;
         }


for(j = 0; j < len; j++)
         {
if (buf[j] != 0xFF)
             {
                 rt_kprintf("The erase operation did not really succeed!
");
                 ret = -1;
return ret;
             }
         }
         i += len;
     }


/* write 0x00 to the specified partition */
for (i = 0; i < partition->len;)
     {
         rt_memset(buf, 0x00, BUF_SIZE);


         len = (partition->len - i) > BUF_SIZE ? BUF_SIZE : (partition->len - i);


         ret = fal_partition_write(partition, i, buf, len);
if (ret < 0)
         {
             rt_kprintf("Partition (%s) write failed!
", partition->name);
             ret = -1;
return ret;
         }


         i += len;
     }
     rt_kprintf("Write (%s) partition finish! Write size %d(%dK).
", partiton_name, i, i/1024);


/* read the specified partition and check data */
for (i = 0; i < partition->len;)
     {
         rt_memset(buf, 0xFF, BUF_SIZE);


         len = (partition->len - i) > BUF_SIZE ? BUF_SIZE : (partition->len - i);


         ret = fal_partition_read(partition, i, buf, len);
if (ret < 0)
         {
             rt_kprintf("Partition (%s) read failed!
", partition->name);
             ret = -1;
return ret;
         }


for(j = 0; j < len; j++)
         {
if (buf[j] != 0x00)
             {
                 rt_kprintf("The write operation did not really succeed!
");
                 ret = -1;
return ret;
             }
         }


         i += len;
     }


     ret = 0;
return ret;
}


static void fal_sample(void)
{
/* 1- init */
     fal_init();


if (fal_test("font") == 0)
     {
         rt_kprintf("Fal partition (%s) test success!
", "font");
     }
else
     {
         rt_kprintf("Fal partition (%s) test failed!
", "font");
     }


if (fal_test("download") == 0)
     {
         rt_kprintf("Fal partition (%s) test success!
", "download");
     }
else
     {
         rt_kprintf("Fal partition (%s) test failed!
", "download");
     }
}
MSH_CMD_EXPORT(fal_sample, fal sample);


static void fal_elmfat_sample(void)
{
int fd, size;
struct statfs elm_stat;
struct fal_blk_device *blk_dev;
char str[] = "elmfat mount to W25Q flash.", buf[80];


/* fal init */
     fal_init();


/* create block device */
     blk_dev = (struct fal_blk_device *)fal_blk_device_create(FS_PARTITION_NAME);
if(blk_dev == RT_NULL)
         rt_kprintf("Can't create a block device on '%s' partition.
", FS_PARTITION_NAME);
else
         rt_kprintf("Create a block device on the %s partition of flash successful.
", FS_PARTITION_NAME);


/* make a elmfat format filesystem */
if(dfs_mkfs("elm", FS_PARTITION_NAME) == 0)
         rt_kprintf("make elmfat filesystem success.
");


/* mount elmfat file system to FS_PARTITION_NAME */
if(dfs_mount(FS_PARTITION_NAME, "/", "elm", 0, 0) == 0)
         rt_kprintf("elmfat filesystem mount success.
");


/* Get elmfat file system statistics */
if(statfs("/", &elm_stat) == 0)
         rt_kprintf("elmfat filesystem block size: %d, total blocks: %d, free blocks: %d.
",
                     elm_stat.f_bsize, elm_stat.f_blocks, elm_stat.f_bfree);


if(mkdir("/user", 0x777) == 0)
         rt_kprintf("make a directory: '/user'.
");


     rt_kprintf("Write string '%s' to /user/test.txt.
", str);


/* Open the file in create and read-write mode, create the file if it does not exist*/
     fd = open("/user/test.txt", O_WRONLY | O_CREAT);
if (fd >= 0)
     {
if(write(fd, str, sizeof(str)) == sizeof(str))
             rt_kprintf("Write data done.
");


         close(fd);   
     }


/* Open file in read-only mode */
     fd = open("/user/test.txt", O_RDONLY);
if (fd >= 0)
     {
         size = read(fd, buf, sizeof(buf));


         close(fd);


if(size == sizeof(str))
             rt_kprintf("Read data from file test.txt(size: %d): %s 
", size, buf);
     }
}
 MSH_CMD_EXPORT_ALIAS(fal_elmfat_sample, fal_elmfat,fal elmfat sample);
DFS文件系統(tǒng)測試結(jié)果

打開串口工具,輸入命令:

msh />fal_elmfat_sample

測試結(jié)果如下:


adbb2804-0b15-11ee-962d-dac502259ad0.png

結(jié)語

本期我們介紹了FAL組件和DFS文件系統(tǒng)的功能特點(diǎn)和使用方法,下期將給大家介紹使用FAL分區(qū)管理與easyflash變量管理的第二部分,如何將EasyFlsh移植到FAL分區(qū)。靜待后續(xù),下期見!

審核編輯:湯梓紅

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • FlaSh
    +關(guān)注

    關(guān)注

    10

    文章

    1614

    瀏覽量

    147657
  • 操作系統(tǒng)
    +關(guān)注

    關(guān)注

    37

    文章

    6688

    瀏覽量

    123141
  • 變量
    +關(guān)注

    關(guān)注

    0

    文章

    613

    瀏覽量

    28306
  • fal
    fal
    +關(guān)注

    關(guān)注

    0

    文章

    5

    瀏覽量

    6735
  • RT-Thread
    +關(guān)注

    關(guān)注

    31

    文章

    1261

    瀏覽量

    39840

原文標(biāo)題:【LPC55S69】使用FAL分區(qū)管理與easyflash變量管理(上集)

文章出處:【微信號(hào):NXP_SMART_HARDWARE,微信公眾號(hào):恩智浦MCU加油站】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦

    RT-Thread文件系統(tǒng)的基本知識(shí)和使用方法

    演示 shell 命令和使用示例的方式來操作文件系統(tǒng),讓開發(fā)者能夠?qū)W會(huì) RT-Thread 文件系統(tǒng)使用方法。
    的頭像 發(fā)表于 08-17 10:01 ?3.1w次閱讀
    RT-Thread<b class='flag-5'>文件系統(tǒng)</b>的基本知識(shí)和<b class='flag-5'>使用方法</b>

    談?wù)勈裁词?b class='flag-5'>文件系統(tǒng) 文件系統(tǒng)功能特點(diǎn)

    文件系統(tǒng)的應(yīng)用非常廣泛,同時(shí)種類也是特別的多,并且不同平臺(tái)也會(huì)使用不同性能和特點(diǎn)文件系統(tǒng),比如查找效率、數(shù)據(jù)安全等級(jí)等等,如下面windows使用的NTFS:
    發(fā)表于 08-30 09:50 ?2654次閱讀
    談?wù)勈裁词?b class='flag-5'>文件系統(tǒng)</b> <b class='flag-5'>文件系統(tǒng)</b>的<b class='flag-5'>功能</b>與<b class='flag-5'>特點(diǎn)</b>

    RT-Thread 虛擬文件系統(tǒng)的架構(gòu)、功能特點(diǎn)和使用方式

    RT-Thread DFS 組件的主要功能特點(diǎn)有:為應(yīng)用程序提供統(tǒng)一的 POSIX 文件和目錄操作接口:read、write、poll/se
    發(fā)表于 03-29 06:46

    RT-Thread文件系統(tǒng)的基本知識(shí)和使用方法

    本文介紹了 RT-Thread 文件系統(tǒng)的基本知識(shí)和使用方法,幫助開發(fā)者更好地使用 RT-Thread 文件系統(tǒng)。并給出了在正點(diǎn)原子 STM32F429-apollo 開發(fā)板上驗(yàn)證的代碼示例。
    發(fā)表于 03-30 07:14

    如何在STM32L4上應(yīng)用littlefs文件系統(tǒng)

    本文介紹了littlefs文件系統(tǒng)的基本知識(shí)和使用方法,幫助開發(fā)者更好地使用 littlefs 文件系統(tǒng)。并給出了基于 FAL 移植的代碼示例。
    發(fā)表于 03-30 06:24

    RT-Thread文件系統(tǒng)的資料下載

    文件系統(tǒng)使用方法。本文的結(jié)構(gòu)本應(yīng)用筆記將從以下三個(gè)方面來介紹 RT-Thread 文件系統(tǒng):RT-Thread DFS 框架RT-Thread
    發(fā)表于 03-24 16:03

    rtthread高級(jí)之什么是虛擬文件系統(tǒng)DFS

    DFS 中,文件系統(tǒng)有統(tǒng)一的根目錄,使用 / 來表示。而在根目錄下的 f1.bin 文件則使用 /f1.bin 來表示, 2018 目錄下的 f1.bin 目錄則使用 /data/2018/f1.bin
    發(fā)表于 04-19 14:22

    如何在STM32開發(fā)板上構(gòu)建一個(gè)on-chip的文件系統(tǒng)

    操作實(shí)現(xiàn)即可。操作方法下面我以STM32L496ZG-NUCLEO開發(fā)板的使用方式來作為一個(gè)操作步驟,其他的STM32系列都可以參考這個(gè)方式來添加文件系統(tǒng)。第一步 選擇組件選擇虛擬文件系統(tǒng)
    發(fā)表于 06-10 10:31

    一文解讀在RTThread平臺(tái)上使用DFS分布式文件系統(tǒng)

    電路板,MCU用的STM32F407VET6  DFS分布式文件系統(tǒng)框架如下:  主要特點(diǎn):  支持多種類型的存儲(chǔ)設(shè)備。  支持多種類型的文件系統(tǒng),提供普通
    發(fā)表于 09-15 16:57

    片上flash使用文件系統(tǒng)筆記分享

    1、片上flash使用文件系統(tǒng)筆記  ?由于之前需要使用片上的flash多余的部分來搭建文件系統(tǒng),但是沒有找到使用片上的教程,都是利用片外的flash教程。后來發(fā)現(xiàn)能直接使用fal軟件包作為
    發(fā)表于 11-23 15:31

    FAL使用片內(nèi)flash掛載dfs失敗是何原因呢?

    ] -------------------------------------------------------------[I/FAL] | app| stm32_onchip | 0x00000000 | 0x00078000 |[I/FAL] |
    發(fā)表于 02-21 10:30

    RT-Thread DFS 組件的主要功能特點(diǎn)

    DFS 的層次架構(gòu)如下圖所示,主要分為 POSIX 接口層、虛擬文件系統(tǒng)層和設(shè)備抽象層。
    發(fā)表于 07-08 15:29 ?4636次閱讀

    基于RTThread的DFS文件系統(tǒng)組件使用筆記

    一下。甚至看看能不能掛載個(gè)網(wǎng)絡(luò)文件系統(tǒng)玩玩。 環(huán)境用的RTThreadStudio RTThread版本:標(biāo)準(zhǔn)版4.0.3 硬件平臺(tái):自己做的產(chǎn)品電路板,MCU用的STM32F407VET6 DFS分布式文件系統(tǒng)框架如下: 主要
    的頭像 發(fā)表于 11-28 20:50 ?3949次閱讀

    【LPC55S69】使用FAL分區(qū)管理與easyflash變量管理(下集)

    上期帶大家了解了FAL組件DFS文件系統(tǒng)功能特點(diǎn)使用方
    的頭像 發(fā)表于 06-29 09:05 ?795次閱讀
    【LPC55S69】使用<b class='flag-5'>FAL</b>分區(qū)管理與easyflash變量管理(下集)

    Linux的文件系統(tǒng)特點(diǎn)

    Linux的文件系統(tǒng)特點(diǎn) 文件系統(tǒng)要有嚴(yán)格的組織形式,使得文件能夠以塊為單位進(jìn)行存儲(chǔ)。 文件系統(tǒng)中也要有索引區(qū),用來方便查找一個(gè)
    的頭像 發(fā)表于 11-09 14:48 ?1102次閱讀
    Linux的<b class='flag-5'>文件系統(tǒng)</b><b class='flag-5'>特點(diǎn)</b>