From 55ad3861c5d76b52a834ad6ab827edec296c60cc Mon Sep 17 00:00:00 2001 From: Gaurav Aggarwal Date: Sun, 17 Feb 2019 01:27:16 +0000 Subject: [PATCH] Sync the Renesas port to AFR Git Repo --- FreeRTOS/Source/portable/Renesas/RX600v2/port.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/FreeRTOS/Source/portable/Renesas/RX600v2/port.c b/FreeRTOS/Source/portable/Renesas/RX600v2/port.c index 162c046a1..76fd33371 100644 --- a/FreeRTOS/Source/portable/Renesas/RX600v2/port.c +++ b/FreeRTOS/Source/portable/Renesas/RX600v2/port.c @@ -37,7 +37,11 @@ #include "string.h" /* Hardware specifics. */ -#include "iodefine.h" +#if defined( configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H ) && ( configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H == 1 ) + #include "platform.h" +#else + #include "iodefine.h" +#endif /*-----------------------------------------------------------*/