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.

AWR1843BOOST: Resolving Build Issues When Combining MSS and DSS .bin Files Using mmWave Image Creator

Part Number: AWR1843BOOST
Other Parts Discussed in Thread: SYSBIOS

Tool/software:

I am referring to the “mmWave Image Creator User Guide” to combine separate MSS and DSS .binfiles into a single .bin file. I have successfully developed my MSS and DSS projects using CCS, compiled them, and generated the respective .bin files. In the Post-build steps of the MSS project, I added the following commands:

Fullscreen
1
2
3
4
${COM_TI_MMWAVE_SDK_INSTALL_DIR}/packages/scripts/ImageCreator/out2rprc/out2rprc.exe vital_sign_detect_1843_mss.out vital_sign_detect_1843_mss.tmp
${COM_TI_MMWAVE_SDK_INSTALL_DIR}/packages/scripts/ImageCreator/multicore_image_generator/MulticoreImageGen.exe LE 37 0x00000006 vital_sign_detection_1843.bin 0x35510000 vital_sign_detect_1843_mss.bin 0xb5510000 ${COM_TI_MMWAVE_SDK_INSTALL_DIR}/firmware/radarss/xwr18xx_radarss_rprc.bin 0xd5510000 ${WORKSPACE_LOC}/vital_sign_detect_1843_dss/Debug/vital_sign_detect_1843_dss.bin
${COM_TI_MMWAVE_SDK_INSTALL_DIR}/packages/scripts/ImageCreator/crc_multicore_image/crc_multicore_image.exe vital_sign_detection_1843.bin vital_sign_detection_1843.tmp
${COM_TI_MMWAVE_SDK_INSTALL_DIR}/packages/scripts/ImageCreator/append_bin_crc/gen_bincrc32.exe vital_sign_detection_1843.bin
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

However, when I recompile the MSS project, the build process always stalls at 43%. Below is my build log:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
**** Build of configuration Debug for project vital_sign_detect_1843_mss ****
"C:\\ti\\ccs1240\\ccs\\utils\\bin\\gmake" -k -j 16 all -O
Building file: "../mss.cfg"
Invoking: XDCtools
"C:/ti/xdctools_3_50_08_24_core/xs" --xdcpath="C:/ti/bios_6_73_01_01/packages;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.R4F -p ti.platforms.cortexR:IWR68XX:false:200 -r release -c "C:/ti/ccs1240/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS" --compileOptions "--enum_type=int" "../mss.cfg"
making package.mak (because of package.bld) ...
generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
configuring mss.xer4f from package/cfg/mss_per4f.cfg ...
generating custom ti.sysbios library makefile ...
Starting build of library sources ...
making C:/Users/allen/Documents/ccs_workspace/Vital_Sign_Detection_Workspace/vital_sign_detect_1843_mss/src/sysbios/sysbios.aer4f ...
gmake[1]: Entering directory `C:/Users/allen/Documents/ccs_workspace/Vital_Sign_Detection_Workspace/vital_sign_detect_1843_mss/src/sysbios'
cler4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/BIOS.c ...
asmer4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/family/arm/IntrinsicsSupport_asm.asm ...
asmer4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/family/arm/TaskSupport_asm.asm ...
asmer4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/family/arm/v7r/vim/Hwi_asm.sv7R ...
asmer4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/family/arm/v7r/vim/Hwi_asm_switch.sv7R ...
asmer4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/family/arm/exc/Exception_asm.asm ...
asmer4f C:/ti/bios_6_73_01_01/packages/ti/sysbios/family/arm/v7r/tms570/Core_asm.sv7R ...
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

What could be causing this issue, and how can I resolve it? Thank you for your help!