This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/EZ430-RF2500: Project Creation

Part Number: EZ430-RF2500
Other Parts Discussed in Thread: MSP430F2274, SIMPLICITI, CC2500

Tool/software: Code Composer Studio

Hello Everyone 

I am working with Ez430RF2500 and want to enable a simple wireless communication for the code below

#include "msp430f2274.h"
#include "mrfi.h"
#include "radios/family1/mrfi_spi.h"
int main(void)
{
BSP_Init();
P1REN |= 0x04;
P1IE |= 0x04;
MRFI_Init();
MRFI_WakeUp();
MRFI_RxOn();
__bis_SR_register(GIE+LPM4_bits);
}
void MRFI_RxCompleteISR()
{
P1OUT ^= 0x02;
}
#pragma vector=PORT1_VECTOR
__interrupt void Port_1 (void)
{
P1IFG &= ~0x04;
mrfiPacket_t packet;
packet.frame[0]=8+20;
MRFI_Transmit(&packet, MRFI_TX_TYPE_FORCED);
P1OUT ^= 0x01;
}

I have almost performed all the required steps for project creation for this module.The steps are as follows

1.created the project in ccswith target as msp430f2274.

2.Right click properties and defined a variable"DEV_ROOT" and set its path to C:\Texas Instruments\Simpliciti

3.right click on project and created a folder ->advanced->link to alternate location->variables->DEV_ROOT->Extend->components->OK

4. excluded the not required files from my project.

5.Now inside project properties->include option->Add new(+)->workspace and included the following projects

Components/bsp
* Components/bsp/boards/Ez430rf 
* Components/bsp/drivers/
* Components/mrfi
* Components/simpliciti/nwk
* Components/simpliciti/nwk_applications

6.In project options, select Build->Advanced Options->Predefined Symbols->Type "MRFI_CC2500"

7.then i created one more folder as Application and pasted main.c file inside it.

But the program shows build errors as below 

Kindly help