application.c 671 字节
Newer Older
M
Ming, Bai 已提交
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
M
Ming, Bai 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
M
Ming, Bai 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 *
 * Change Logs:
 * Date         Author      Notes
 * 2012-02-13   mojingxian  first version
 */

#include "application.h"
#include "board.h"
#include "rtthread.h"

void app_init_entry(void *parg)
{
    parg = parg;

    rt_hw_core_timer_init();//start system tick in first thread.

    rt_hw_isr_install();
}


void rt_application_init(void)
{
    rt_thread_t led_thread;

#ifdef RT_USING_HEAP
    led_thread = rt_thread_create("init", app_init_entry, RT_NULL, 512, 200, 20);
#endif

    if (led_thread != RT_NULL)
    {
        rt_thread_startup(led_thread);
    }
}