24 lines
477 B
C
24 lines
477 B
C
|
/*
|
||
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2018-11-06 SummerGift change to new framework
|
||
|
* 2018-11-19 flybreak add stm32f429-fire-challenger bsp
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <rtdevice.h>
|
||
|
#include <board.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
while (1)
|
||
|
{
|
||
|
rt_pin_write(LED1_PIN, !rt_pin_read(LED1_PIN));
|
||
|
rt_thread_mdelay(500);
|
||
|
}
|
||
|
}
|