1 /*
2  * Copyright (c) 2006-2023, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2023-02-22     ChuShicheng  first version
9  * 2023-02-23     Wangyuqiang  second version
10  */
11 
12 #include <Arduino.h>
13 
setup(void)14 void setup(void)
15 {
16     /* put your setup code here, to run once: */
17     Serial.begin();
18     Serial.println("Hello RTduino!");
19 }
20 
loop(void)21 void loop(void)
22 {
23     /* put your main code here, to run repeatedly: */
24     delay(1000);
25 }
26