123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-07-08 Rbb666 first version
- */
- #ifndef __UART_CONFIG_H__
- #define __UART_CONFIG_H__
- #include <rtthread.h>
- #include "board.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef BSP_USING_UART0
- /* UART0 device driver structure */
- cy_stc_sysint_t UART0_SCB_IRQ_cfg =
- {
- .intrSrc = (IRQn_Type) scb_0_interrupt_IRQn,
- .intrPriority = (7u),
- };
- #endif
- #ifdef BSP_USING_UART1
- /* UART1 device driver structure */
- cy_stc_sysint_t UART1_SCB_IRQ_cfg =
- {
- .intrSrc = (IRQn_Type) scb_1_interrupt_IRQn,
- .intrPriority = (7u),
- };
- #endif
- #ifdef BSP_USING_UART2
- /* UART2 device driver structure */
- cy_stc_sysint_t UART2_SCB_IRQ_cfg =
- {
- .intrSrc = (IRQn_Type) scb_2_interrupt_IRQn,
- .intrPriority = (7u),
- };
- #endif
- #ifdef BSP_USING_UART3
- /* UART3 device driver structure */
- cy_stc_sysint_t UART3_SCB_IRQ_cfg =
- {
- .intrSrc = (IRQn_Type) scb_3_interrupt_IRQn,
- .intrPriority = (7u),
- };
- #endif
- #ifdef BSP_USING_UART4
- /* UART4 device driver structure */
- cy_stc_sysint_t UART4_SCB_IRQ_cfg =
- {
- .intrSrc = (IRQn_Type) scb_4_interrupt_IRQn,
- .intrPriority = (7u),
- };
- #endif
- #ifdef BSP_USING_UART5
- /* UART5 device driver structure */
- cy_stc_sysint_t UART5_SCB_IRQ_cfg =
- {
- .intrSrc = (IRQn_Type) scb_5_interrupt_IRQn,
- .intrPriority = (7u),
- };
- #endif
- #if defined(BSP_USING_UART0)
- #ifndef UART0_CONFIG
- #define UART0_CONFIG \
- { \
- .name = "uart0", \
- .tx_pin = P0_3, \
- .rx_pin = P0_2, \
- .usart_x = SCB0, \
- .intrSrc = scb_0_interrupt_IRQn, \
- .userIsr = uart_isr_callback(uart0) \
- .UART_SCB_IRQ_cfg = &UART0_SCB_IRQ_cfg, \
- }
- void uart0_isr_callback(void);
- #endif /* UART0_CONFIG */
- #endif /* BSP_USING_UART0 */
- #if defined(BSP_USING_UART1)
- #ifndef UART1_CONFIG
- #define UART1_CONFIG \
- { \
- .name = "uart1", \
- .tx_pin = P10_1, \
- .rx_pin = P10_0, \
- .usart_x = SCB1, \
- .intrSrc = scb_1_interrupt_IRQn, \
- .userIsr = uart_isr_callback(uart1) \
- .UART_SCB_IRQ_cfg = &UART1_SCB_IRQ_cfg, \
- }
- void uart1_isr_callback(void);
- #endif /* UART1_CONFIG */
- #endif /* BSP_USING_UART1 */
- #if defined(BSP_USING_UART2)
- #ifndef UART2_CONFIG
- #define UART2_CONFIG \
- { \
- .name = "uart2", \
- .tx_pin = P9_1, \
- .rx_pin = P9_0, \
- .usart_x = SCB2, \
- .intrSrc = scb_2_interrupt_IRQn, \
- .userIsr = uart_isr_callback(uart2), \
- .UART_SCB_IRQ_cfg = &UART2_SCB_IRQ_cfg, \
- }
- void uart2_isr_callback(void);
- #endif /* UART2_CONFIG */
- #endif /* BSP_USING_UART2 */
- #if defined(BSP_USING_UART3)
- #ifndef UART3_CONFIG
- #define UART3_CONFIG \
- { \
- .name = "uart3", \
- .tx_pin = P6_1, \
- .rx_pin = P6_0, \
- .usart_x = SCB3, \
- .intrSrc = scb_3_interrupt_IRQn, \
- .userIsr = uart_isr_callback(uart3), \
- .UART_SCB_IRQ_cfg = &UART3_SCB_IRQ_cfg, \
- }
- void uart3_isr_callback(void);
- #endif /* UART3_CONFIG */
- #endif /* BSP_USING_UART3 */
- #if defined(BSP_USING_UART4)
- #ifndef UART4_CONFIG
- #define UART4_CONFIG \
- { \
- .name = "uart4", \
- .tx_pin = P7_1, \
- .rx_pin = P7_0, \
- .usart_x = SCB4, \
- .intrSrc = scb_4_interrupt_IRQn, \
- .userIsr = uart_isr_callback(uart4), \
- .UART_SCB_IRQ_cfg = &UART4_SCB_IRQ_cfg, \
- }
- void uart4_isr_callback(void);
- #endif /* UART4_CONFIG */
- #endif /* BSP_USING_UART4 */
- #if defined(BSP_USING_UART5)
- #ifndef UART5_CONFIG
- #define UART5_CONFIG \
- { \
- .name = "uart5", \
- .tx_pin = P5_1, \
- .rx_pin = P5_0, \
- .usart_x = SCB5, \
- .intrSrc = scb_5_interrupt_IRQn, \
- .userIsr = uart_isr_callback(uart5), \
- .UART_SCB_IRQ_cfg = &UART5_SCB_IRQ_cfg, \
- }
- void uart5_isr_callback(void);
- #endif /* UART5_CONFIG */
- #endif /* BSP_USING_UART5 */
- #ifdef __cplusplus
- }
- #endif
- #endif
|