SanKin

Results 1 issues of SanKin

芯片:STM32F407ZGT6 工具链:arm-none-eabi-gcc RT-Thread版本:RT-Thread v5.0.1 如题,基本条件和官方例程中一致,W25Q128被切分成了几个区,我目标是将filesystem区挂载为文件为文件系统根目录,挂载成功后能创建删除文件夹,但是无法进行mkfs操作和读写文件操作。 目前可以确认flash无硬件问题,我已测试从flash中读写数据和擦除flash操作。 ### 控制台记录如下: ![image](https://github.com/RT-Thread/rt-thread/assets/24820157/2516b9d7-83da-4886-a78b-c564abdde060) ### config如下: ![image](https://github.com/RT-Thread/rt-thread/assets/24820157/8d056013-6295-490c-a938-1bb5710b50eb) ![image](https://github.com/RT-Thread/rt-thread/assets/24820157/a4858b3d-02fb-4dde-8d10-c6578bfe5e29) ### Coder如下: ``` #include #include #include #include #if DFS_FILESYSTEMS_MAX < 4 #error "Please define DFS_FILESYSTEMS_MAX more than...