application.c 2.1 KB
Newer Older
W
weety 已提交
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
W
weety 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
W
weety 已提交
5 6
 *
 * Change Logs:
7 8
 * Date           Author        Notes
 * 2011-01-13     weety     first version
W
weety 已提交
9 10
 */

W
weety 已提交
11

W
weety 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/**
 * @addtogroup dm365
 */
/*@{*/

#include <rtthread.h>

#ifdef RT_USING_DFS
/* dfs Filesystem APIs */
#include <dfs_fs.h>
#endif

#ifdef RT_USING_SDIO
#include <drivers/mmcsd_core.h>
#endif

W
weety 已提交
28
int main(void)
W
weety 已提交
29
{
30
    int timeout = 0;
31

W
weety 已提交
32 33
/* Filesystem Initialization */
#ifdef RT_USING_DFS
34
    {
W
weety 已提交
35 36

#if defined(RT_USING_DFS_ROMFS)
37 38 39 40 41 42
        if (dfs_mount(RT_NULL, "/rom", "rom", 0, &romfs_root) == 0)
        {
            rt_kprintf("ROM File System initialized!\n");
        }
        else
            rt_kprintf("ROM File System initialzation failed!\n");
W
weety 已提交
43 44 45
#endif

#if defined(RT_USING_DFS_UFFS)
46 47 48 49 50 51 52
    {
        /* mount flash device as flash directory */
        if(dfs_mount("nand0", "/nand0", "uffs", 0, 0) == 0)
            rt_kprintf("UFFS File System initialized!\n");
        else
            rt_kprintf("UFFS File System initialzation failed!\n");
    }
W
weety 已提交
53 54
#endif

55
#ifdef RT_USING_SDIO
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    timeout = 0;
    while ((rt_device_find("sd0") == RT_NULL) && (timeout++ < RT_TICK_PER_SECOND*2))
    {
        rt_thread_delay(1);
    }

    if (timeout < RT_TICK_PER_SECOND*2)
    {
        /* mount sd card fat partition 1 as root directory */
        if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
        {
            rt_kprintf("File System initialized!\n");
        }
        else
            rt_kprintf("File System initialzation failed!%d\n", rt_get_errno());
    }
    else
    {
        rt_kprintf("No SD card found.\n");
    }
W
weety 已提交
76
#endif
77
    }
W
weety 已提交
78 79
#endif

80
    /* put user application code here */
W
weety 已提交
81 82 83 84 85 86 87 88 89

}


/* NFSv3 Initialization */
#if defined(RT_USING_DFS) && defined(RT_USING_LWIP) && defined(RT_USING_DFS_NFS)
#include <dfs_nfs.h>
void nfs_start(void)
{
90 91 92 93 94 95 96 97
    nfs_init();

    if (dfs_mount(RT_NULL, "/nfs", "nfs", 0, RT_NFS_HOST_EXPORT) == 0)
    {
        rt_kprintf("NFSv3 File System initialized!\n");
    }
    else
        rt_kprintf("NFSv3 File System initialzation failed!\n");
W
weety 已提交
98 99 100 101 102 103 104
}

#include "finsh.h"
FINSH_FUNCTION_EXPORT(nfs_start, start net filesystem);
#endif

/*@}*/