1234567891011121314151617181920 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-06-21 RiceChen the first version
- */
- #include <stdio.h>
- #include <rtthread.h>
- #include "rtdevice.h"
- int main(void)
- {
- rt_kprintf("\n<RT-Thread -- GD32F350R8T6>\n\n");
- return 0;
- }
|