summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvictorfdezc <72078685+victorfdezc@users.noreply.github.com>2021-06-22 02:39:10 +0200
committerGitHub <noreply@github.com>2021-06-21 17:39:10 -0700
commit4c4a0ab755bd99d7211befb9b967bdf113d5e906 (patch)
treef03e66a90c4b6d047c941c89260aefbb5f686f82
parent434eeadf9f76336da8c5d4d248801bc1be097e28 (diff)
downloadfreertos-git-4c4a0ab755bd99d7211befb9b967bdf113d5e906.tar.gz
Fix Bug from Issue #565 (#629)
Co-authored-by: Victor <vfernandez@maccorobotics.com> Co-authored-by: Paul Bartell <pbartell@amazon.com> Co-authored-by: Shivangi <66447522+gshvang@users.noreply.github.com>
-rw-r--r--FreeRTOS/Demo/AVR_ATMega323_WinAVR/serial/serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/FreeRTOS/Demo/AVR_ATMega323_WinAVR/serial/serial.c b/FreeRTOS/Demo/AVR_ATMega323_WinAVR/serial/serial.c
index e5957c35a..68c4f684c 100644
--- a/FreeRTOS/Demo/AVR_ATMega323_WinAVR/serial/serial.c
+++ b/FreeRTOS/Demo/AVR_ATMega323_WinAVR/serial/serial.c
@@ -185,7 +185,7 @@ unsigned char ucByte;
}
/*-----------------------------------------------------------*/
-SIGNAL( SIG_UART_RECV )
+SIGNAL( USART_RXC_vect )
{
signed char cChar;
signed portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
@@ -204,7 +204,7 @@ signed portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
}
/*-----------------------------------------------------------*/
-SIGNAL( SIG_UART_DATA )
+SIGNAL( USART_UDRE_vect )
{
signed char cChar, cTaskWoken;