2011-12-17 12:14:22 +08:00
|
|
|
/*
|
2021-04-09 10:52:34 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2011-12-17 12:14:22 +08:00
|
|
|
*
|
2021-04-09 10:52:34 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-12-17 12:14:22 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-06-05 Bernard the first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup sam7s
|
|
|
|
*/
|
2013-01-08 22:40:58 +08:00
|
|
|
/*@{*/
|
|
|
|
#include <rtthread.h>
|
2011-12-17 12:14:22 +08:00
|
|
|
|
|
|
|
int rt_application_init()
|
|
|
|
{
|
2021-04-09 10:52:34 +08:00
|
|
|
return 0;
|
2011-12-17 12:14:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*@}*/
|