I am trying to run FreeRTOS on the RM48HDK. I am following the help file named example_freertosblinky.c . But the LED does not seem to blink.
First I create a empty project in Code Composer Studio. I select the variant to be RM48L950, and connection as Texas Instruments XDS100v2 USB Emulator. I leave the other settings to their default fields.
Then in HALCOGEN, I select the device as RM48L950ZWT_FREERTOS. I follow the exact same steps as mentioned in the help file, but just a small change in VIM RAM column, instead of of vPreemptiveTick , I have used vPortPreemptiveTick. The former gave me linking errors.
Also, I was getting a error for all the header files included. The error stated that the source files cannot be found. I just added this in all the #include statements to remove this error.
#include "../include/file_name.h" instead of just #include "file_name.h".
That got rid of the compile and linking errors and I was able to generate the executable.
I load the .out file on the board using nowFlashWin.
I am attaching my workspace here. If somebody can tell me where am I going wrong. Are there any project properties to be changed in Code Composer Studio?
It would be great if anybody could share their working FreeRTOS working directory for the RM48 HDK it would be great.
Here is my FreeRTOS workspace

