| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * Copyright (c) 2006-2025, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2025-08-19 BruceOu first version
- */
- #include <rtthread.h>
- #include "hal_data.h"
- #ifdef RT_USING_NANO
- #include <drv_gpio.h>
- #else
- #include <rtdevice.h>
- #endif /* RT_USING_NANO */
- #define LED1_PIN BSP_IO_PORT_02_PIN_07 /* Onboard LED1 pins */
- #define LED2_PIN BSP_IO_PORT_04_PIN_00 /* Onboard LED2 pins */
- #define LED3_PIN BSP_IO_PORT_01_PIN_13 /* Onboard LED3 pins */
- void hal_entry(void)
- {
- rt_kprintf("\nHello RT-Thread!\n");
- while (1)
- {
- rt_pin_write(LED1_PIN, PIN_HIGH);
- rt_pin_write(LED2_PIN, PIN_HIGH);
- rt_pin_write(LED3_PIN, PIN_HIGH);
- rt_thread_mdelay(500);
- rt_pin_write(LED1_PIN, PIN_LOW);
- rt_pin_write(LED2_PIN, PIN_LOW);
- rt_pin_write(LED3_PIN, PIN_LOW);
- rt_thread_mdelay(500);
- }
- }
|