| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-10-10 Sherman first version
- * 2021-11-03 Sherman Add icu_sample
- */
- #include <rtthread.h>
- #include "hal_data.h"
- #ifdef RT_USING_NANO
- #include <drv_gpio.h>
- #else
- #include <rtdevice.h>
- #endif /* RT_USING_NANO */
- #define LED3_PIN BSP_IO_PORT_01_PIN_06
- #define USER_INPUT "P105"
- void hal_entry(void)
- {
- rt_kprintf("\nHello RT-Thread!\n");
- while (1)
- {
- rt_pin_write(LED3_PIN, PIN_HIGH);
- rt_thread_mdelay(500);
- rt_pin_write(LED3_PIN, PIN_LOW);
- rt_thread_mdelay(500);
- }
- }
- #ifndef RT_USING_NANO
- void irq_callback_test(void *args)
- {
- rt_kprintf("\n IRQ00 triggered \n");
- }
- void icu_sample(void)
- {
- /* init */
- rt_uint32_t pin = rt_pin_get(USER_INPUT);
- rt_kprintf("\n pin number : 0x%04X \n", pin);
- rt_err_t err = rt_pin_attach_irq(pin, PIN_IRQ_MODE_RISING, irq_callback_test, RT_NULL);
- if(RT_EOK != err)
- {
- rt_kprintf("\n attach irq failed. \n");
- }
- err = rt_pin_irq_enable(pin, PIN_IRQ_ENABLE);
- if(RT_EOK != err)
- {
- rt_kprintf("\n enable irq failed. \n");
- }
- }
- MSH_CMD_EXPORT(icu_sample, icu sample);
- #endif
|