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/AWR1843: CCS/AWR1843

Part Number: AWR1843
Other Parts Discussed in Thread: MATHLIB, SYSBIOS

Tool/software: Code Composer Studio

Hello, I have some problems with creation of example project for awr1843 in CCS. I have installed last version of CCS (10.1.00010) and mmwave sdk (3.04.00.03). I have added all libraries from sdk to ccs. 

 

I want to create a simple SYS/BIOS example for my awr1843.

  

The paltform field is empty for MSS and DSS. But it is work for awr16xx.

 

I can create the empty project for awr18xx. I added mmw_mss.cfg file to mss project and some #include directives to main.c. So I get an error:

"Description Resource Path Location Type

Can't find the target named 'ti.targets.arm.elf.R4F_big_endian' along the path 'D:/Programs/ti/dsplib_c64Px_3_4_0_0/packages;D:/Programs/ti/dsplib_c674x_3_4_0_0/packages;D:/Programs/ti/mathlib_c674x_3_1_2_1/packages;D:/Programs/ti/bios_6_73_01_01/packages;D:/Programs/ti/ccs1010/xdctools_3_61_02_27_core/packages;..;': please check the spelling of the target's name and that it exists along this path. .xdchelp /mss line 10 C/C++ Problem"

Listing of the code in main.c:

/* Standard Include Files. */

#include <stdint.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <math.h>


/* BIOS/XDC Include Files. */
#include <xdc/std.h>
#include <xdc/cfg/global.h>
#include <xdc/runtime/IHeap.h>
#include <xdc/runtime/System.h>
#include <xdc/runtime/Error.h>
#include <xdc/runtime/Memory.h>
#include <ti/sysbios/BIOS.h>
#include <ti/sysbios/knl/Task.h>
#include <ti/sysbios/knl/Event.h>
#include <ti/sysbios/knl/Semaphore.h>
#include <ti/sysbios/knl/Clock.h>
#include <ti/sysbios/heaps/HeapBuf.h>
#include <ti/sysbios/heaps/HeapMem.h>
#include <ti/sysbios/knl/Event.h>
#include <ti/sysbios/family/arm/v7a/Pmu.h>
#include <ti/sysbios/family/arm/v7r/vim/Hwi.h>
#include <ti/sysbios/utils/Load.h>


/* mmWave SDK Include Files: */
#include <ti/common/sys_common.h>
#include <ti/common/mmwave_sdk_version.h>
#include <ti/drivers/soc/soc.h>
#include <ti/drivers/esm/esm.h>
#include <ti/drivers/crc/crc.h>
#include <ti/drivers/gpio/gpio.h>
#include <ti/drivers/mailbox/mailbox.h>
#include <ti/drivers/pinmux/pinmux.h>
#include <ti/control/mmwave/mmwave.h>
#include <ti/control/dpm/dpm.h>
#include <ti/drivers/osal/DebugP.h>
#include <ti/drivers/uart/UART.h>
#include <ti/utils/cli/cli.h>
#include <ti/utils/mathutils/mathutils.h>


/* Demo Include Files */
#include <ti/demo/xwr18xx/mmw/include/mmw_config.h>
#include <ti/demo/utils/mmwdemo_rfparser.h>
#include <ti/demo/utils/mmwdemo_adcconfig.h>
#include <ti/demo/utils/mmwdemo_monitor.h>
#include <ti/demo/xwr18xx/mmw/include/mmw_output.h>
#include <ti/demo/xwr18xx/mmw/mmw_res.h>
#include <ti/demo/xwr18xx/mmw/mss/mmw_mss.h>

/* Profiler Include Files */
#include <ti/utils/cycleprofiler/cycle_profiler.h>

/**
* main.c
*/
int main(void)
{
return 0;
}

Moreover, I can't set the platform in properties for mss.

Help me, please. I haven't found useful information on the forum. P.S. I have similiar problems with industrial toolbox project examples when I try use them in CCS.