32 lines
594 B
C
32 lines
594 B
C
|
/*
|
||
|
* File : main.c
|
||
|
* This file is part of RT-Thread RTOS
|
||
|
* COPYRIGHT (C) 2006, RT-Thread Develop Team
|
||
|
*
|
||
|
* The license and distribution terms for this file may be
|
||
|
* found in the file LICENSE in this distribution or at
|
||
|
* http://openlab.rt-thread.com/license/LICENSE
|
||
|
*
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
/*@}*/
|