29 lines
555 B
C
29 lines
555 B
C
|
/*
|
||
|
* Copyright (C) 2018 Shanghai Eastsoft Microelectronics Co., Ltd.
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2019-10-23 yuzrain the first version
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <rtdevice.h>
|
||
|
|
||
|
#define LED_PIN 61
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
/* LED pin configuration */
|
||
|
rt_pin_mode(LED_PIN, PIN_MODE_OUTPUT);
|
||
|
|
||
|
while (1)
|
||
|
{
|
||
|
rt_pin_write(LED_PIN, PIN_HIGH);
|
||
|
rt_thread_mdelay(1000);
|
||
|
rt_pin_write(LED_PIN, PIN_LOW);
|
||
|
rt_thread_mdelay(1000);
|
||
|
}
|
||
|
}
|