application.c 889 字节
Newer Older
Y
yangfasheng 已提交
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
Y
yangfasheng 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
Y
yangfasheng 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * Change Logs:
 * Date           Author       Notes
 * 2011-05-24     Bernard      the first version
 */

/**
 * @addtogroup FM4
 */
/*@{*/

#include <rtthread.h>
#include "board.h"

void rt_init_thread_entry(void *parameter)
{
#ifdef RT_USING_COMPONENTS_INIT
    /* initialization RT-Thread Components */
    rt_components_init();
#endif


mysterywolf's avatar
mysterywolf 已提交
27
    //finsh_system_init();
Y
yangfasheng 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    finsh_set_device(RT_CONSOLE_DEVICE_NAME);


    /**< init led device */
    {
        extern void rt_led_hw_init(void);
        rt_led_hw_init();
    }

}

int rt_application_init()
{
    rt_thread_t tid;

    tid = rt_thread_create("init",
                           rt_init_thread_entry, RT_NULL,
                           2048, 8, 20);
    if (tid != RT_NULL) rt_thread_startup(tid);

    return 0;
}

/*@}*/