Ejemplo n.º 1
0
/** This function handles USART4 interrupt handler
 *
 */
static void uart4_irq(void)
{
    usart_irq(4, UART4);
}
Ejemplo n.º 2
0
/** This function handles USART2 interrupt handler
 *
 */
static void usart2_irq(void)
{
    usart_irq(2, USART2);
}
Ejemplo n.º 3
0
/** This function handles USART3 interrupt handler
 *
 */
static void uart3_irq(void)
{
    usart_irq(3, UART3);
}
Ejemplo n.º 4
0
/** This function handles USART0 interrupt handler
 *
 */
static void usart0_irq(void)
{
    usart_irq(0, USART0);
}
Ejemplo n.º 5
0
/** This function handles USART1 interrupt handler
 *
 */
static void usart1_irq(void)
{
    usart_irq(1, USART1);
}
Ejemplo n.º 6
0
void __irq_usart1(void) {
    usart_irq(&usart3_rb, USART3_BASE);
}
Ejemplo n.º 7
0
void __irq_usart2(void) {
    usart_irq(&usart4_rb, USART4_BASE);
}
Ejemplo n.º 8
0
void __irq_uart1(void) {
    usart_irq(&usart1_rb, USART1_BASE);
}
Ejemplo n.º 9
0
void __irq_uart2(void) {
    usart_irq(&usart2_rb, USART2_BASE);
}
Ejemplo n.º 10
0
void UART5_IRQHandler(void)
{
    usart_irq(UART_NUM5);
}
Ejemplo n.º 11
0
void UART4_IRQHandler(void)
{
    usart_irq(UART_NUM4);
}
Ejemplo n.º 12
0
void UART3_IRQHandler(void)
{
    usart_irq(UART_NUM3);
}
Ejemplo n.º 13
0
void UART2_IRQHandler(void)
{
    usart_irq(UART_NUM2);
}
Ejemplo n.º 14
0
void UART1_IRQHandler(void)
{
    usart_irq(UART_NUM1);
}