From 11d1719ea51fd947d0ff63d5fc409e93cb3c1ef9 Mon Sep 17 00:00:00 2001 From: Erik Tamlin Date: Tue, 2 Jun 2020 10:23:26 +0200 Subject: [PATCH] * Fixed backwards compatibility. --- include/FreeRTOS.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/FreeRTOS.h b/include/FreeRTOS.h index 9048eb370..b6425dbaa 100644 --- a/include/FreeRTOS.h +++ b/include/FreeRTOS.h @@ -456,12 +456,12 @@ hold explicit before calling the code. */ #define traceCREATE_COUNTING_SEMAPHORE_FAILED() #endif -#ifndef traceQUEUE_SEND - #define traceQUEUE_SEND( pxQueue ) +#ifndef traceQUEUE_SET_SEND + #define traceQUEUE_SET_SEND traceQUEUE_SEND #endif -#ifndef traceQUEUE_SET_SEND - #define traceQUEUE_SET_SEND( pxQueue ) +#ifndef traceQUEUE_SEND + #define traceQUEUE_SEND( pxQueue ) #endif #ifndef traceQUEUE_SEND_FAILED