30 lines
581 B
C
30 lines
581 B
C
/*
|
|
* Copyright (c) 2023, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2023-07-06 Supperthomas first version
|
|
*/
|
|
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
#include <board.h>
|
|
|
|
#define GPIO_LED_B GET_PIN(F, 11)
|
|
#define GPIO_LED_R GET_PIN(F, 12)
|
|
int main(void)
|
|
{
|
|
rt_pin_mode(GPIO_LED_R, PIN_MODE_OUTPUT);
|
|
|
|
while (1)
|
|
{
|
|
rt_pin_write(GPIO_LED_R, PIN_HIGH);
|
|
rt_thread_mdelay(500);
|
|
rt_pin_write(GPIO_LED_R, PIN_LOW);
|
|
rt_thread_mdelay(500);
|
|
}
|
|
}
|