Other Parts Discussed in Thread: CC1310, CC2650
Tool/software: Code Composer Studio
Hi, I'm trying to just compile and run some example code that's build for the CC1310 launchpad on the reference design 4x4 RSM provided by TI. I followed
so far by replacing CC1310_LAUNCHXL_TIRTOS.cmd, .c, and .h with their CC1310DK_4XD.cmd, .c, and .h parts. Then i changed some path files
From: #include <inc/hw_memmap.h>
To: #include <ti/devices/cc13x0/inc/hw_memmap.h>
From: #include <driverlib/ioc.h>
To: #include <ti/devices/cc13x0/driverlib/ioc.h>
and those works just fine. but now i'm faced with inside CC1310DK_4XD.c
Description Resource Path Location Type
#1965 cannot open source file "ti/mw/Display.h" CC1310DK_4XD.c /CC1310_4XD_empty_tester line 311 C/C++ Problem
i tried changing path similar to the ones above but same error
I'm using CCS 7.2.0, with simpleLink CC13x0 SDK1_60_00_21 along with tirtos_builds_CC1310_LAUNCHXL_release_ccs file including tirtos_cc13xx_cc26xx_2_21_00_06
is there a more detail instruction i can follow so i can modify my CC1310 Launchpad setting to adapt to others form factors such as the 4XD,5XD,7XD, etc?
Below is also my build log .
**** Build of configuration Debug for project CC1310_4XD_empty_tester ****
"C:\\ti\\ccsv7\\utils\\bin\\gmake" -k -j 12 all -O
'Building file: ../CC1310DK_4XD.c'
'Invoking: ARM Compiler'
"C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/bin/armcl" -mv7M3 --code_state=16 --float_support=vfplib -me --include_path="C:/Users/jjun/workspace_v7/CC1310_4XD_empty_tester" --include_path="C:/ti/simplelink_cc13x0_sdk_1_60_00_21/source/ti/posix/ccs" --include_path="C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.6.LTS/include" --define=DeviceFamily_CC13X0 -g --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --gen_func_subsections=on --preproc_with_compile --preproc_dependency="CC1310DK_4XD.d" --cmd_file="C:/Users/jjun/workspace_v7/tirtos_builds_CC1310_LAUNCHXL_release_ccs/Debug/configPkg/compiler.opt" "../CC1310DK_4XD.c"
>> Compilation failure
subdir_rules.mk:9: recipe for target 'CC1310DK_4XD.obj' failed
"../CC1310DK_4XD.c", line 311: fatal error #1965: cannot open source file "ti/mw/Display.h"
1 catastrophic error detected in the compilation of "../CC1310DK_4XD.c".
Compilation terminated.
gmake: *** [CC1310DK_4XD.obj] Error 1
gmake: Target 'all' not remade because of errors.
**** Build Finished ****
Thanks in advance.