Questions tagged [code-composer]

Name of the IDE from Texas Instruments originally intended for DSP developers, later extended to cover almost all processors offered by TI. Currently contains Eclipse based IDE and toolchains.

Code Composer Studio in the official name given by Texas Instruments to their set of development tools: Integrated Development Environment with debugging tools. Initially the IDE was native Windows application made by TI, but from some time it is Eclipse based. Contains set of toolchains (assembler, c/c++ compilers, linkers, libraries, some real-time operating systems for DSP or ARM) as well.

Well known by any software engineer who developed on C64x or C67x DSP families or MSP430 family.

Probably only tool able to handle TI's or Spectrum Digital JTAG emulators used as hardware debuggers for TI chips.

References

193 questions
8
votes
2 answers

Inline assembly in C code using TI code composer studio (for ARM)

Could somebody tell me please how can I execute inline assembly code in C code using TI code composer studio (for ARM)? I searched and tried but nothing worked. For example, when I try this very simple code: asm("push r0\n"); or this __asm("push…
Mohammed Noureldin
  • 14,913
  • 17
  • 70
  • 99
7
votes
2 answers

How do I compile a Code Composer project which was created using a different version of Code Generation tools?

I have a Code Composer project I received from a friend. When I try to build it I get the following error message: This project was created using a version of Code Generation tools that is not currently installed: 6.1.12 [C6000]. Please…
snakile
  • 52,936
  • 62
  • 169
  • 241
7
votes
1 answer

Set disassembly view colors

How can one change the colors used in the disassembly view of TI's Code Composer Studio 6.1.3, that uses Eclipse 4.5 CDT 8.8? I have selected the Eclipse "Dark theme" but it does not seem to have applied to the disassembly view, nor the memory…
Toby
  • 9,696
  • 16
  • 68
  • 132
5
votes
2 answers

How to set up a git repository for an IDE-based project?

I work mostly with embedded applications (FPGAs and microcontrollers) and I'm fairly new to git and version control in general. I've come to learn the power of it and want to set up some of my projects for co-workers and friends to collaborate with…
kjgregory
  • 656
  • 2
  • 12
  • 23
4
votes
1 answer

Code Composer Studio (CCS), importing existing project fails: "Compiler definition not available"

Attempting to import an existing project into CCS, I get the error: Import failed for project because its compiler definition is not available. The project does not appear to be a 'CCS Project'. Please try importing it through the 'General >…
Michael
  • 2,118
  • 1
  • 19
  • 25
3
votes
3 answers

How do I add preprocessor defines in Code Composer Studio 4?

I have an external text file with some preprocessor defines. How can I integrate them in my CCS project?
snakile
  • 52,936
  • 62
  • 169
  • 241
3
votes
0 answers

Errors while trying to build ReadWrite example in Code Composer Studio 4

I'm trying to build the Read Write example in CCS4 and get many "undefined identifier" errors: identifier "MAX_PROCESSORS" is undefined identifier "MPCSOBJ_PROC_PADDING" is undefined identifier "MPCS_TURN_PADDING" is undefined etc. These are…
snakile
  • 52,936
  • 62
  • 169
  • 241
3
votes
1 answer

MSP430: __delay_cycles() is slow/MCLK might be slow

I am afraid there may be something wrong with my MSP430F5529 launchpad because I can't get __delay_cycles to behave properly. It always use to work fine but now suddenly seems to have an issue. I would just use a timer module to cause a delay but…
3
votes
2 answers

breakpoint inside interrupt C

I'm using LCDK C6748 of Texas Intruments with Code Composer Studio and TMDSEMU100V2U-14T - XDS100v2 USB JTAG Emulator. LCDK comes with bunch of support functions, including a function that initialize…
Day_Dreamer
  • 3,311
  • 7
  • 34
  • 61
3
votes
1 answer

C makefile, in CCS, "The system cannot find the file specified"

I am new to makefiles, so please bear with me. I tried to edit an automatically generated makefile in Code Composer Studios, but I'm getting an error. Here is an excerpt from the makefile # All Target all: makefile_project_test1.out @echo '' …
2
votes
1 answer

cannot run any eclipse commands to import or build project Code Composer Studio v9.0.0 from command line

I am trying to set up a build environment for Code Composer Studio to build projects for the CC1352 Launchpad that I have with me, inside a docker container running ubuntu. I was able to download and install Code Composer Studio version 9.0.0…
Samyukta Ramnath
  • 371
  • 4
  • 18
2
votes
2 answers

MSP430 I2C reading a SDP610 differential pressure sensor issue

I am trying to read a SDP610 sensiron differential pressure sensor via a Texas Instruments msp430. I am having the issue of the sensor not acknowledging the command and thus, not communicating the pressure value itself. Note I have confirmed that…
Thomas Morris
  • 794
  • 5
  • 26
2
votes
2 answers

How to trace and analyze FreeRTOS tasks on CCS (Code Composer Studio) 9

I inherited a Texas TIVA TM4C-based FreeRTOS multi-thread project. It's the first time for me managing such multi-task environment, I've only experienced single-thread programming with no OS. I'm in the need of debugging some strange behaviour in my…
MMM
  • 35
  • 7
2
votes
1 answer

how to fix the CCS installation error on ubuntu

I have been trying to install the CCS(code composer studio) in the ubuntu server running in VM through SSH. I'm doing this for the first time, and I have hit an error, searched online but couldn't find any help. I have installed the preliminary lib…
vcnr_1234
  • 63
  • 8
2
votes
1 answer

Assembly language ASCII string ordering

I'm new into using the MSP430 with Code composer and i was doing a lab assignment where i had simple instructions coded in. I ran this instruction: mov.w #'ABC', R9 in result, I obtain a #0x4241 in R9. i understand that the above in quote 'ABC' are…
Nicholas
  • 21
  • 2
1
2 3
12 13