29 lines
518 B
C
29 lines
518 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2009-01-05 Bernard the first version
|
|
* 2018-08-17 whj remove finsh_set_device add components
|
|
* 2018-12-17 whj Change the user interface to main
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup STM32
|
|
*/
|
|
/*@{*/
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
#include <board.h>
|
|
|
|
int main(void)
|
|
{
|
|
/* user app entry */
|
|
return RT_EOK;
|
|
}
|
|
|
|
/*@}*/
|