2018-11-29 17:00:22 +08:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
2018-11-29 17:00:22 +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);
|
|
|
|
}
|
|
|
|
}
|