4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 00:57:24 +08:00
Man, Jianting (Meco) 7b47e8d052
[stm32f401-nucleo] arduino support (#5842)
* [stm32f401-nucleo] arduino support
* 增加application arduino main文件
* 调整目录结构
2022-04-20 09:09:58 +08:00

22 lines
420 B
C

/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-11-06 SummerGift first version
* 2022-04-19 Meco Man solve LED interferes with SPI
*/
#include <rtthread.h>
int main(void)
{
while (1)
{
rt_kprintf("Hello RT-Thread from main.c\n");
rt_thread_mdelay(1000);
}
}