SPI 介紹
SPI 原理:
FAL (Flash Abstraction Layer) Flash 抽象層
DFS (Device File System) 設(shè)備虛擬文件系統(tǒng)
DFS 的層次架構(gòu)圖:
ROMFS
ARTPI 外部 SPI Flash
ARTPI 有一個(gè)外部 SPI Flash,空間為 16-Mbytes,使用的是 ARTPI 的 SPI1 接口。
查閱 Flash 的數(shù)據(jù)手冊(cè)可知,扇區(qū)大小為 4KB,也就是 4096B:
整體思路
在 meunconfig 中開啟 DFS,本教程使用 elmfatfs 文件系統(tǒng),需要將 elmfatfs 掛載到 RT-Thread 的 DFS 上,所以 elmfatfs 也要開啟:
注意要把扇區(qū)大小改成上面查閱的 4096:
當(dāng)然,不要忘記在 meunconfig 中開啟 SPI Flash filesystem:
此時(shí) scons --target=mdk5 然后編譯下載,運(yùn)行結(jié)果會(huì)是這樣:
顯示兩個(gè)報(bào)錯(cuò):
一是 Flash 上面的 filesystem 分區(qū)(在上方輸出的 FAL 分區(qū)表種可以找到,對(duì)應(yīng)的定義在 fal_cfg.h 文件中)掛載到 /flash 上失敗了;二是 lfs 文件系統(tǒng)沒有找到
我們?cè)?filesystem.c 中找到了報(bào)錯(cuò)對(duì)應(yīng)的代碼:
可以看出來這部分代碼是掛載 lfs 文件系統(tǒng),于是上面報(bào)錯(cuò)的原因找到了:我們使用的是 elm-FATFS 系統(tǒng),需要手動(dòng)修改一下掛載代碼。
我們創(chuàng)建設(shè)備的時(shí)候是 BLK 設(shè)備,要用 fal_blk_device_create 這個(gè)函數(shù)。
代碼修改之后是這樣:
照葫蘆畫瓢寫個(gè) elm 系統(tǒng)的掛載,主要的區(qū)別有:
1.注冊(cè)設(shè)備用的 fal_blk_device_create 而非 fal_mtd_nor_device_create
2.掛載到 / 而非 /flash
3.文件系統(tǒng)使用 elm 而非 rom
修改完之后重新編譯下載,發(fā)現(xiàn)依舊報(bào)錯(cuò),運(yùn)行 ls 查看一下情況,發(fā)現(xiàn)是這樣:
再次返回查看代碼,原來是這里導(dǎo)致的:
使用了 romfs,然后開啟了 flash 和 sdcard 兩塊區(qū)域。這里我們需要默認(rèn)不使用 ROMFS,改成這樣:
另外在 menuconfig 中查看,發(fā)現(xiàn)這個(gè)宏是默認(rèn)開啟的,找到是在 boards/Kconfig 中默認(rèn)選擇了,需要注釋掉:
到對(duì)應(yīng)的選項(xiàng)取消掉這個(gè)宏:
最終,filesystem.c 的代碼完整版如下:
/*
Copyright (c) 2006-2022, RT-Thread Development Team
SPDX-License-Identifier: Apache-2.0
Change Logs:
Date Author Notes
2018-12-13 balanceTWK add sdcard port file 2019-06-11 WillianChan Add SD card hot plug detection
/
#include
#ifdef BSP_USING_FS
#if DFS_FILESYSTEMS_MAX < 4
#error "Please define DFS_FILESYSTEMS_MAX more than 4"
#endif
#if DFS_FILESYSTEM_TYPES_MAX < 4
#error "Please define DFS_FILESYSTEM_TYPES_MAX more than 4"
#endif
#include
#ifdef BSP_USING_SDCARD_FS
#include
#include "drv_sdio.h"
#endif
#ifdef BSP_USING_SPI_FLASH_FS
#include "fal.h"
#endif
#define DBG_TAG "app.filesystem"
#define DBG_LVL DBG_INFO
#include
#ifdef RT_USING_DFS_ROMFS / 默認(rèn)不使用 ROMFS */
#include "dfs_romfs.h"
static const struct romfs_dirent _romfs_root[] =
{
{ROMFS_DIRENT_DIR, "flash", RT_NULL, 0},
{ROMFS_DIRENT_DIR, "sdcard", RT_NULL, 0}
};
const struct romfs_dirent romfs_root =
{
ROMFS_DIRENT_DIR, "/", (rt_uint8_t )_romfs_root, sizeof(_romfs_root) / sizeof(_romfs_root[0])
};
#endif
#ifdef BSP_USING_SDCARD_FS
/ SD Card hot plug detection pin */
#define SD_CHECK_PIN GET_PIN(D, 5)
static void _sdcard_mount(void)
{
rt_device_t device;
device = rt_device_find("sd0");
if (device == NULL)
{
mmcsd_wait_cd_changed(0);
sdcard_change();
mmcsd_wait_cd_changed(RT_WAITING_FOREVER);
device = rt_device_find("sd0");
}
if (device != RT_NULL)
{
if (dfs_mount("sd0", "/sdcard", "elm", 0, 0) == RT_EOK)
{
LOG_I("sd card mount to '/sdcard'");
}
else
{
LOG_W("sd card mount to '/sdcard' failed!");
}
}
}
static void _sdcard_unmount(void)
{
rt_thread_mdelay(200);
dfs_unmount("/sdcard");
LOG_I("Unmount "/sdcard"");
mmcsd_wait_cd_changed(0);
sdcard_change();
mmcsd_wait_cd_changed(RT_WAITING_FOREVER);
}
static void sd_mount(void parameter)
{
rt_uint8_t re_sd_check_pin = 1;
rt_thread_mdelay(200);
if (rt_pin_read(SD_CHECK_PIN))
{
_sdcard_mount();
}
while (1)
{
rt_thread_mdelay(200);
if (!re_sd_check_pin && (re_sd_check_pin = rt_pin_read(SD_CHECK_PIN)) != 0)
{
_sdcard_mount();
}
if (re_sd_check_pin && (re_sd_check_pin = rt_pin_read(SD_CHECK_PIN)) == 0)
{
_sdcard_unmount();
}
}
}
#endif / BSP_USING_SDCARD_FS */
int mnt_spi_flash_init(void)
{
struct rt_device flash_dev = RT_NULL;
#ifndef RT_USING_WIFI
fal_init();
#endif
flash_dev = fal_blk_device_create("filesystem");
if (flash_dev)
{
//mount filesystem
if (dfs_mount(flash_dev->parent.name, "/", "elm", 0, 0) != 0)
{
LOG_W("mount to '/' failed! try to mkfs %s", flash_dev->parent.name);
dfs_mkfs("elm", flash_dev->parent.name);
if (dfs_mount(flash_dev->parent.name, "/", "elm", 0, 0) == 0)
{
LOG_I("mount to '/' success!");
}
}
else
{
LOG_I("mount to '/' success!");
}
}
else
{
LOG_E("Can't create block device filesystem or bt_image partition.");
}
}
int mount_init(void)
{
#ifdef RT_USING_DFS_ROMFS / 默認(rèn)不使用ROMFS */
if (dfs_mount(RT_NULL, "/", "rom", 0, &(romfs_root)) != 0)
{
LOG_E("rom mount to '/' failed!");
}
#endif
#ifdef BSP_USING_SPI_FLASH_FS
mnt_spi_flash_init();
#if 0
struct rt_device flash_dev = RT_NULL;
#ifndef RT_USING_WIFI
fal_init();
#endif
flash_dev = fal_mtd_nor_device_create("filesystem");
if (flash_dev)
{
//mount filesystem
if (dfs_mount(flash_dev->parent.name, "/flash", "lfs", 0, 0) != 0)
{
LOG_W("mount to '/flash' failed! try to mkfs %s", flash_dev->parent.name);
dfs_mkfs("lfs", flash_dev->parent.name);
if (dfs_mount(flash_dev->parent.name, "/flash", "lfs", 0, 0) == 0)
{
LOG_I("mount to '/flash' success!");
}
}
else
{
LOG_I("mount to '/flash' success!");
}
}
else
{
LOG_E("Can't create block device filesystem or bt_image partition.");
}
#endif
#endif
#ifdef BSP_USING_SDCARD_FS
rt_thread_t tid;
rt_pin_mode(SD_CHECK_PIN, PIN_MODE_INPUT_PULLUP);
tid = rt_thread_create("sd_mount", sd_mount, RT_NULL,
2048, RT_THREAD_PRIORITY_MAX - 2, 20);
if (tid != RT_NULL)
{
rt_thread_startup(tid);
}
else
{
LOG_E("create sd_mount thread err!");
}
#endif
return RT_EOK;
}
INIT_APP_EXPORT(mount_init);
#endif / BSP_USING_FS */
重新生成、編譯、下載,運(yùn)行結(jié)果如下:
大功告成!
-
SPI
+關(guān)注
關(guān)注
17文章
1688瀏覽量
91215 -
RT-Thread
+關(guān)注
關(guān)注
31文章
1261瀏覽量
39840 -
FatFS文件系統(tǒng)
+關(guān)注
關(guān)注
0文章
12瀏覽量
7514 -
DFS
+關(guān)注
關(guān)注
0文章
26瀏覽量
9147 -
ART-Pi
+關(guān)注
關(guān)注
0文章
23瀏覽量
1278
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論