完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我按着官网的sd卡文件系统教程来的 添加了如下三个函数
void sd_mount(void *parameter) { while (1) { rt_thread_mdelay(500); if(rt_device_find("sd0") != RT_NULL) { if (dfs_mount("sd0", "/C", "elm", 0, 0) == RT_EOK) { LOG_I("sd card mount to '/C'"); break; } else { LOG_W("sd card mount to '/C' failed!"); } } } } int STM32_sdcard_mount(void) { rt_thread_t tid; tid = rt_thread_create("sd_mount", sd_mount, RT_NULL, 1024, RT_THREAD_PRIORITY_MAX - 2, 20); if (tid != RT_NULL) { rt_thread_startup(tid); } else { LOG_E("create sd_mount thread err!"); } return RT_EOK; } INIT_APP_EXPORT(stm32_sdcard_mount); static int rt_hw_spi1_tfcard(void) { __HAL_RCC_GPIOC_CLK_ENABLE(); rt_hw_spi_device_attach("spi1", "spi10", GPIOC, GPIO_PIN_3); LOG_I("sd card "); return msd_init("sd0", "spi10"); } INIT_DEVICE_EXPORT(rt_hw_spi1_tfcard); 然后串口显示挂载失败 |
|
相关推荐
1个回答
|
|
建议直接找到源码加Log分析
源码位置: rt-thread/components/dfs/src/dfs_fs.c line of 214: /** * this function will mount a file system on a specified path. * * @param device_name the name of device which includes a file system. * @param path the path to mount a file system * @param filesystemtype the file system type * @param rwflag the read/write etc. flag. * @param data the private data(parameter) for this file system. * * @Return 0 on successful or -1 on failed. */ int dfs_mount(const char *device_name, const char *path, const char *filesystemtype, unsigned long rwflag, const void *data) 加Log分析具体是哪个 return -1 的case 然后验证自己的代码 |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
489 浏览 0 评论
AI模型部署边缘设备的奇妙之旅:如何在边缘端部署OpenCV
1823 浏览 0 评论
tms320280021 adc采样波形,为什么adc采样频率上来波形就不好了?
1142 浏览 0 评论
1620 浏览 0 评论
1424 浏览 0 评论
74707 浏览 21 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-21 06:01 , Processed in 0.567854 second(s), Total 71, Slave 55 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号