main.c 594 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * File : main.c
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Develop Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://openlab.rt-thread.com/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2006-08-31 Bernard first implementation
  13. * 2011-06-05 Bernard modify for STM32F107 version
  14. */
  15. #include <rthw.h>
  16. #include <rtthread.h>
  17. /**
  18. * @addtogroup STM32
  19. */
  20. /*@{*/
  21. int main(void)
  22. {
  23. /* user app entry */
  24. return 0;
  25. }
  26. /*@}*/