main.c 409 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018-11-06 SummerGift first version
  9. * 2022-04-19 Meco Man solve LED interferes with SPI
  10. */
  11. #include <rtthread.h>
  12. int main(void)
  13. {
  14. while (1)
  15. {
  16. rt_kprintf("Hello RT-Thread!\n");
  17. rt_thread_mdelay(1000);
  18. }
  19. }