/* * Copyright (c) 2006-2025, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2024-03-11 Wangyuqiang first version */ #include #include #include #include "hal_data.h" #define LED_PIN_0 BSP_IO_PORT_14_PIN_3 /* Onboard LED pins */ #define LED_PIN_1 BSP_IO_PORT_14_PIN_0 /* Onboard LED pins */ #define LED_PIN_2 BSP_IO_PORT_14_PIN_1 /* Onboard LED pins */ void hal_entry(void) { rt_kprintf("\nHello RT-Thread!\n"); while (1) { rt_pin_write(LED_PIN_0, PIN_HIGH); rt_pin_write(LED_PIN_1, PIN_HIGH); rt_pin_write(LED_PIN_2, PIN_HIGH); rt_thread_mdelay(1000); rt_pin_write(LED_PIN_0, PIN_LOW); rt_pin_write(LED_PIN_1, PIN_LOW); rt_pin_write(LED_PIN_2, PIN_LOW); rt_thread_mdelay(1000); } }