33 lines
702 B
C
33 lines
702 B
C
/*
|
|
* Copyright (c) 2006-2024, RT-Thread Development Team
|
|
* Copyright (c) 2022-2024, Xiaohua Semiconductor Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2024-02-20 CDT first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
#include <board.h>
|
|
|
|
/* defined the LED_GREEN pin: PA2 */
|
|
#define LED_GREEN_PIN GET_PIN(A, 2)
|
|
|
|
int main(void)
|
|
{
|
|
/* set LED_GREEN_PIN pin mode to output */
|
|
rt_pin_mode(LED_GREEN_PIN, PIN_MODE_OUTPUT);
|
|
|
|
while (1)
|
|
{
|
|
rt_pin_write(LED_GREEN_PIN, PIN_HIGH);
|
|
rt_thread_mdelay(500);
|
|
rt_pin_write(LED_GREEN_PIN, PIN_LOW);
|
|
rt_thread_mdelay(500);
|
|
}
|
|
}
|
|
|