main.c 381 B

123456789101112131415161718192021222324
  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. * 2019-05-06 tyustli first version
  9. *
  10. */
  11. #include <rtthread.h>
  12. #include <rtdevice.h>
  13. #include "drv_gpio.h"
  14. int main(void)
  15. {
  16. while (1)
  17. {
  18. rt_kprintf("test\r\n");
  19. rt_thread_mdelay(500);
  20. }
  21. }