Merge pull request #4963 from mysterywolf/407

[stm32-f407-explorer] remove sdcard thread
This commit is contained in:
guo 2021-08-24 13:51:08 +08:00 committed by GitHub
commit 7b66141889
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 33 deletions

View File

@ -29,46 +29,15 @@
#include <rtdbg.h>
#ifdef BSP_USING_SDCARD_FATFS
static void sd_mount(void *parameter)
{
while (1)
{
rt_thread_mdelay(500);
if(rt_device_find("sd0") != RT_NULL)
{
if (dfs_mount("sd0", "/sdcard", "elm", 0, 0) == RT_EOK)
{
LOG_I("sd card mount to '/sdcard'");
break;
}
else
{
LOG_W("sd card mount to '/sdcard' failed!");
}
}
}
}
static int onboard_sdcard_mount(void)
{
rt_thread_t tid;
if (dfs_mount("sd0", "/sdcard", "elm", 0, 0) == RT_EOK)
{
LOG_I("sd card mount to '/sdcard'");
LOG_I("SD card mount to '/sdcard'");
}
else
{
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!");
}
LOG_E("SD card mount to '/sdcard' failed!");
}
return RT_EOK;