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.

CC2640R2F: Continuous Integration with CCS project

Part Number: CC2640R2F

Hello

I am new to Code Composer, BLE, and SimpleLink development. I am using the "simple_peripheral" example as a foundation for my application development, as recommended.

Is it possible to integrate CCS with a continuous integration tool, specifically Azure DevOps in my case? I attempted to build the project from the command line but encountered difficulties.

I followed these guidelines (software-dl.ti.com/.../sdto_ccs_source-control.html) to place the project under source control, and it successfully works with Git. However, it appears that importing and building the project from the IDE is the only supported method. I'm curious if it's feasible to generate makefiles and build the project solely using command line scripts. If possible, would this approach also manage project dependencies, similar to what's done in the simple_peripheral example?

Here is the directory and file structure, when cloned from git (this has everithing necessary to build using the IDE): 

ble5_simple_peripheral_cc2640r2lp_app/

.ccsproject
.cproject
.gitignore
.project
.settings/
Application/
Include/
PROFILES/
Startup/
targetConfigs/
TOOLS/


ble5_simple_peripheral_cc2640r2lp_stack_library/

.ccsproject
.cproject
.gitignore
.project
.settings/
TOOLS/

I am using CC version 12.4 on windows.