From 661f0db0242384e751f4a9ab74bdd64312d35c37 Mon Sep 17 00:00:00 2001 From: Anirudha Sarangi Date: Tue, 25 Aug 2015 18:06:19 +0530 Subject: [PATCH] FreeRTOSBSP: Update tcl file to fix issues for CortexA9 case For CortexA9, the tcl was exporting a wrong hash define to clear the interrupts. This patch fixes that issue. Signed-off-by: Anirudha Sarangi Acked by: Kinjal Pravinbhai Patel --- ThirdParty/bsp/freertos821_xilinx/data/freertos821_xilinx.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThirdParty/bsp/freertos821_xilinx/data/freertos821_xilinx.tcl b/ThirdParty/bsp/freertos821_xilinx/data/freertos821_xilinx.tcl index a1200d39..655f7f66 100755 --- a/ThirdParty/bsp/freertos821_xilinx/data/freertos821_xilinx.tcl +++ b/ThirdParty/bsp/freertos821_xilinx/data/freertos821_xilinx.tcl @@ -627,7 +627,7 @@ proc generate {os_handle} { puts $config_file "void FreeRTOS_SetupTickInterrupt( void );" puts $config_file "#define configSETUP_TICK_INTERRUPT() FreeRTOS_SetupTickInterrupt()\n" puts $config_file "void FreeRTOS_ClearTickInterrupt( void );" - puts $config_file "#define portCLEAR_TICK_INTERRUPT() FreeRTOS_ClearTickInterrupt()\n" + puts $config_file "#define configCLEAR_TICK_INTERRUPT() FreeRTOS_ClearTickInterrupt()\n" } # end of if $proctype == "ps7_cortexa9"