You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2021-07-29 andy the first version
|
|
*/
|
|
#include <rtthread.h>
|
|
#include "dfs_fs.h"
|
|
|
|
|
|
#define DBG_TAG "mount_fs"
|
|
#define DBG_LVL DBG_LOG
|
|
#include <rtdbg.h>
|
|
|
|
|
|
|
|
void sd_mount(void *parameter)
|
|
{
|
|
while (1)
|
|
{
|
|
|
|
if(rt_device_find("sd0") != RT_NULL)
|
|
{
|
|
if (dfs_mount("sd0", "/", "elm", 0, 0) == RT_EOK)
|
|
{
|
|
LOG_I("sd card mount to '/fatfs'");
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
LOG_W("sd card mount to '/fatfs' failed!");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int stm32_sdcard_mount(void)
|
|
{
|
|
rt_thread_t tid;
|
|
|
|
tid = rt_thread_create("sd_mount", sd_mount, RT_NULL,
|
|
1024*4, 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);
|
|
|