2015-08-07 13:30:13 +08:00
|
|
|
/*
|
2018-10-16 13:00:37 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2015-08-07 13:30:13 +08:00
|
|
|
*
|
2018-10-16 13:00:37 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-08-07 13:30:13 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-01-05 Bernard the first version
|
2015-08-09 09:17:28 +08:00
|
|
|
* 2014-04-27 Bernard make code cleanup.
|
2015-08-07 13:30:13 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
2015-08-09 09:17:28 +08:00
|
|
|
|
2015-09-25 15:35:37 +08:00
|
|
|
int main(void)
|
2015-08-07 13:30:13 +08:00
|
|
|
{
|
2015-09-26 11:37:11 +08:00
|
|
|
/* put user application code here */
|
2015-08-07 13:30:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2015-09-26 11:37:11 +08:00
|
|
|
|