Wayne Lin c9392e2a8b 1. Correct typo.
2. Fix spi/qspi/uspi TX/RX PDMA trigger issue.
3. Drain RX FIFO to remove remain FEF frames in FIFO.
4. Implement RT_DEVICE_CTRL_CLOSE in uart/uuart/scuart driver.
2020-08-03 12:15:33 +08:00

40 lines
876 B
C

/**************************************************************************//**
*
* @copyright (C) 2019 Nuvoton Technology Corp. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020-1-16 Wayne First version
*
******************************************************************************/
#include <rtconfig.h>
#include <rtdevice.h>
#include <drv_gpio.h>
/* defined the LEDR pin: PH0 */
#define LEDR NU_GET_PININDEX(NU_PH, 0)
int main(int argc, char **argv)
{
#if defined(RT_USING_PIN)
int counter = 0;
/* set LEDR1 pin mode to output */
rt_pin_mode(LEDR, PIN_MODE_OUTPUT);
while (counter++ < 10)
{
rt_pin_write(LEDR, PIN_HIGH);
rt_thread_mdelay(500);
rt_pin_write(LEDR, PIN_LOW);
rt_thread_mdelay(500);
}
#endif
return 0;
}