From b77447ff39196550b827af28f24522881c2c4fa5 Mon Sep 17 00:00:00 2001 From: Alejandro Solano <54044412+soranoalejandro@users.noreply.github.com> Date: Thu, 20 Aug 2020 14:10:28 -0400 Subject: [PATCH] Show correct compiler error message in UART0.cpp Cross checked with the files UART1 to UART3, only UART0 needs the fix. --- cores/arduino/UART0.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/arduino/UART0.cpp b/cores/arduino/UART0.cpp index b8f1f34c..522b6844 100644 --- a/cores/arduino/UART0.cpp +++ b/cores/arduino/UART0.cpp @@ -51,7 +51,7 @@ ISR(HWSERIAL0_DRE_VECTOR) Serial._tx_data_empty_irq(); } #else -#error "Don't know what the Data Received interrupt vector is called for Serial" +#error "Don't know what the Data Register Empty interrupt vector is called for Serial" #endif #if defined(HWSERIAL0)