用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
671 B

/*
* Copyright (c) 2006-2023, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* 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);
}
}