コード例 #1
0
__interrupt static void r_uart1_interrupt_error(void)
{
    uint8_t err_type;

    *gp_uart1_rx_address = RXD1;
    r_uart1_callback_error(err_type);
}
コード例 #2
0
ファイル: r_cg_serial_user.c プロジェクト: patilpramod97/RL78
__interrupt static void r_uart1_interrupt_error(void)
{
    uint8_t err_type;

    *gp_uart1_rx_address = RXD1;
    err_type = (uint8_t)(SSR03 & 0x0007U);
    SIR03 = (uint16_t)err_type;
    r_uart1_callback_error(err_type);
}