main.c 507 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2006-08-31 Bernard first implementation
  9. * 2018-09-02 xuzhuoyi modify for TMS320F28379D version
  10. * 2022-08-21 qiyu modify the entry function
  11. */
  12. #include <stdint.h>
  13. #include <rthw.h>
  14. #include <rtthread.h>
  15. #include "board.h"
  16. int main(void)
  17. {
  18. unsigned long x=10000;
  19. while(x)
  20. {
  21. x--;
  22. }
  23. }
  24. /*@}*/