mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-24 00:17:32 +08:00
6b0671b336
1.RT_TIMER_TICK_PER_SECOND替换为RT_TICK_PER_SECOND 2.nxp lpc、imx、mcx系列bsp修复 3.lpc824支持gcc 4.lpc824、lpc1114 bsp默认使用nano版本 5.nxp scons --dist问题修复 6.rt-spark lvgl latest 编译修复
32 lines
705 B
C
32 lines
705 B
C
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2019-05-06 tyustli first version
|
|
*
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
#include <drv_gpio.h>
|
|
#include <fsl_gpio.h>
|
|
|
|
#define EXAMPLE_LED_GPIO GPIO9
|
|
#define EXAMPLE_LED_GPIO_PIN (3U)
|
|
#define EXAMPLE_LED_GPIO_PORT (3U)
|
|
#define LED_PIN GET_PIN(EXAMPLE_LED_GPIO_PORT, EXAMPLE_LED_GPIO_PIN)
|
|
int main(void)
|
|
{
|
|
rt_pin_mode(LED_PIN, PIN_MODE_OUTPUT);
|
|
while (1)
|
|
{
|
|
rt_pin_write(LED_PIN, PIN_LOW);
|
|
rt_thread_mdelay(500);
|
|
rt_pin_write(LED_PIN, PIN_HIGH);
|
|
rt_thread_mdelay(500);
|
|
}
|
|
}
|