main.c 518 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2009-01-05 Bernard the first version
  9. * 2018-08-17 whj remove finsh_set_device add components
  10. * 2018-12-17 whj Change the user interface to main
  11. */
  12. /**
  13. * @addtogroup STM32
  14. */
  15. /*@{*/
  16. #include <rtthread.h>
  17. #include <rtdevice.h>
  18. #include <board.h>
  19. int main(void)
  20. {
  21. /* user app entry */
  22. return RT_EOK;
  23. }
  24. /*@}*/