提交 f2636ea8 编写于 作者: P prife

clean code in bsp/simulator/application/application.c

上级 fbbc4c8d
......@@ -50,8 +50,11 @@ void rt_init_thread_entry(void *parameter)
#ifdef RT_USING_DFS_ELMFAT
/* mount sd card fatfs as root directory */
//if (dfs_mount("sd0", "/disk/sd", "elm", 0, 0) == 0)
#ifdef _WIN32
if (dfs_mount("sd0", "/disk/sd", "elm", 0, 0) == 0)
#else
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
#endif
rt_kprintf("fatfs initialized!\n");
else
rt_kprintf("fatfs initialization failed!\n");
......@@ -75,11 +78,6 @@ void rt_init_thread_entry(void *parameter)
}
#endif
#if defined(RT_USING_RTGUI)
//rt_thread_delay(RT_TICK_PER_SECOND);
//snake_main();
#endif
}
static void rt_test_thread_entry(void *parameter)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册