rt-thread/bsp/rv32m1_vega/ri5cy/applications/mnt.c

29 lines
485 B
C
Raw Normal View History

2018-12-08 10:44:56 +08:00
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
*/
#include <rtthread.h>
#ifdef RT_USING_DFS
#include <dfs_fs.h>
int mnt_init(void)
{
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
{
rt_kprintf("File System initialized!\n");
}
else
{
rt_kprintf("File System initialized failed!\n");
}
return 0;
}
INIT_ENV_EXPORT(mnt_init);
#endif