예제 #1
0
파일: serial_api.c 프로젝트: oscarh/mbed-os
/** This function handles USART4 interrupt handler
 *
 */
static void uart4_irq(void)
{
    usart_irq(4, UART4);
}
예제 #2
0
파일: serial_api.c 프로젝트: oscarh/mbed-os
/** This function handles USART2 interrupt handler
 *
 */
static void usart2_irq(void)
{
    usart_irq(2, USART2);
}
예제 #3
0
파일: serial_api.c 프로젝트: oscarh/mbed-os
/** This function handles USART3 interrupt handler
 *
 */
static void uart3_irq(void)
{
    usart_irq(3, UART3);
}
예제 #4
0
파일: serial_api.c 프로젝트: oscarh/mbed-os
/** This function handles USART0 interrupt handler
 *
 */
static void usart0_irq(void)
{
    usart_irq(0, USART0);
}
예제 #5
0
파일: serial_api.c 프로젝트: oscarh/mbed-os
/** This function handles USART1 interrupt handler
 *
 */
static void usart1_irq(void)
{
    usart_irq(1, USART1);
}
예제 #6
0
파일: usart.c 프로젝트: boltonja/armduino
void __irq_usart1(void) {
    usart_irq(&usart3_rb, USART3_BASE);
}
예제 #7
0
파일: usart.c 프로젝트: boltonja/armduino
void __irq_usart2(void) {
    usart_irq(&usart4_rb, USART4_BASE);
}
예제 #8
0
파일: usart.c 프로젝트: boltonja/armduino
void __irq_uart1(void) {
    usart_irq(&usart1_rb, USART1_BASE);
}
예제 #9
0
파일: usart.c 프로젝트: boltonja/armduino
void __irq_uart2(void) {
    usart_irq(&usart2_rb, USART2_BASE);
}
예제 #10
0
void UART5_IRQHandler(void)
{
    usart_irq(UART_NUM5);
}
예제 #11
0
void UART4_IRQHandler(void)
{
    usart_irq(UART_NUM4);
}
예제 #12
0
void UART3_IRQHandler(void)
{
    usart_irq(UART_NUM3);
}
예제 #13
0
void UART2_IRQHandler(void)
{
    usart_irq(UART_NUM2);
}
예제 #14
0
void UART1_IRQHandler(void)
{
    usart_irq(UART_NUM1);
}