28 lines
418 B
C
28 lines
418 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2006-08-31 Bernard first implementation
|
|
* 2011-06-05 Bernard modify for STM32F107 version
|
|
*/
|
|
|
|
#include <rthw.h>
|
|
#include <rtthread.h>
|
|
|
|
/**
|
|
* @addtogroup STM32
|
|
*/
|
|
|
|
/*@{*/
|
|
|
|
int main(void)
|
|
{
|
|
/* user app entry */
|
|
return 0;
|
|
}
|
|
|
|
/*@}*/
|