4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-14 03:29:14 +08:00
2024-04-18 20:21:59 -04:00

25 lines
399 B
C

/*
* Copyright (c) 2006-2023, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-10-10 Sherman first version
*/
#include <rtthread.h>
#include "hal_data.h"
#include <rtdevice.h>
void hal_entry(void)
{
rt_kprintf("\nHello RT-Thread!\n");
while (1)
{
rt_thread_mdelay(500);
}
}