2019-03-19 15:13:18 +08:00
|
|
|
/*
|
2021-03-14 15:33:55 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2019-03-19 15:13:18 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2019-3-19 tyustli first version
|
2023-12-04 00:11:29 +08:00
|
|
|
* 2023-12-03 Meco Man support nano version
|
2019-03-19 15:13:18 +08:00
|
|
|
*/
|
|
|
|
|
2023-12-04 00:11:29 +08:00
|
|
|
#include <board.h>
|
2019-03-19 15:13:18 +08:00
|
|
|
#include <rtthread.h>
|
2023-12-04 00:11:29 +08:00
|
|
|
#include <drv_gpio.h>
|
|
|
|
#ifndef RT_USING_NANO
|
2019-03-19 15:13:18 +08:00
|
|
|
#include <rtdevice.h>
|
2023-12-04 00:11:29 +08:00
|
|
|
#endif /* RT_USING_NANO */
|
2019-03-19 15:13:18 +08:00
|
|
|
|
|
|
|
/* defined the LED0 pin: PB14 */
|
|
|
|
#define LED0_PIN GET_PIN(B, 14)
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
/* set LED0 pin mode to output */
|
|
|
|
rt_pin_mode(LED0_PIN, PIN_MODE_OUTPUT);
|
|
|
|
|
2021-03-28 19:36:32 +08:00
|
|
|
while (1)
|
2019-03-19 15:13:18 +08:00
|
|
|
{
|
|
|
|
rt_pin_write(LED0_PIN, PIN_HIGH);
|
|
|
|
rt_thread_mdelay(500);
|
|
|
|
rt_pin_write(LED0_PIN, PIN_LOW);
|
|
|
|
rt_thread_mdelay(500);
|
|
|
|
}
|
|
|
|
}
|