rt-thread-official/bsp/stm32/stm32f746-st-disco/applications/main.c

31 lines
608 B
C
Raw Normal View History

2019-01-10 22:39:34 +08:00
/*
2021-03-14 15:33:55 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2019-01-10 22:39:34 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2019-01-06 jinsheng first version
*/
#include <rtthread.h>
#include <rtdevice.h>
#include <board.h>
2019-01-22 09:14:06 +08:00
2019-01-10 22:39:34 +08:00
/* defined the LED1 pin: PI1 */
#define LED1_PIN GET_PIN(I, 1)
int main(void)
{
/* set LED1 pin mode to output */
rt_pin_mode(LED1_PIN, PIN_MODE_OUTPUT);
while (1)
2019-01-10 22:39:34 +08:00
{
rt_pin_write(LED1_PIN, PIN_HIGH);
rt_thread_mdelay(500);
rt_pin_write(LED1_PIN, PIN_LOW);
rt_thread_mdelay(500);
}
}