rt-thread/bsp/stm32f40x/applications/main.c

28 lines
418 B
C
Raw Normal View History

/*
2018-10-16 13:00:37 +08:00
* Copyright (c) 2006-2018, RT-Thread Development Team
*
2018-10-16 13:00:37 +08:00
* 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;
}
/*@}*/