rt-thread/bsp/stm32/stm32f103-atk-nano/applications/main.c

23 lines
412 B
C
Raw Normal View History

/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-11-27 balanceTWK change to new framework
*/
2018-11-30 18:29:37 +08:00
#include <rtthread.h>
#include <rtdevice.h>
#include <board.h>
int main(void)
{
while (1)
{
rt_pin_write(LED0_PIN, !rt_pin_read(LED0_PIN));
rt_thread_mdelay(500);
}
}