rt-thread/bsp/stm32/stm32f429-armfly-v6/applications/main.c

31 lines
566 B
C
Raw Normal View History

/*
2021-03-14 15:33:55 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-12-18 zylx first version
*/
#include <rtthread.h>
#include <rtdevice.h>
#include <board.h>
#include <drv_ext_io.h>
int main(void)
{
HC574_SetPin(LED1,0);
2021-03-14 15:33:55 +08:00
HC574_SetPin(LED2,0);
HC574_SetPin(LED3,0);
HC574_SetPin(LED4,0);
2021-03-14 15:33:55 +08:00
while (1)
{
HC574_SetPin(LED1,1);
rt_thread_mdelay(500);
HC574_SetPin(LED1,0);
rt_thread_mdelay(500);
}
}