Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions variants/arduino_due_x/variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,21 +336,25 @@ void serialEvent3() __attribute__((weak));
void serialEvent3() { }

// IT handlers
void USART0_Handler(void) __attribute__((weak));
void USART0_Handler(void)
{
Serial1.IrqHandler();
}

void USART1_Handler(void) __attribute__((weak));
void USART1_Handler(void)
{
Serial2.IrqHandler();
}

void USART3_Handler(void) __attribute__((weak));
void USART3_Handler(void)
{
Serial3.IrqHandler();
}


// ----------------------------------------------------------------------------

void serialEventRun(void)
Expand Down