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
0
votes
0 answers

How does one change the color of the menu bar in TI's Code Composer Studio?

Is there a way to change the color of the tool bar depicted in the picture below? I cannot seem to find a way in order to alter it... I have turned CCS into Dark mode however the white bar depicted in the picture is still not turning darker...
0
votes
0 answers

How to hide code into brakets in Code Composer/Eclipse

How I can hide code into brackets in Code Composer/Eclipse into my c++ project? I press Ctrl + \ to show hide button near method. But how can I make it for all brackets.
user10609288
0
votes
0 answers

Reading a value from ADC buffer and creating graph on that with ePWM

I am new to CCS and C general. I have a problem to ask hope you can help me; enter image description here I want to add another ePWM (the third one) to the above project. The first ePWM already generates a 2kHz 25% duty cycle symmetric PWM waveform…
ugursoran
  • 1
  • 1
0
votes
0 answers

MSP430: Error initializing emulator: No USB FET was found MacOs

I have mabook air m1 with macOS Ventura, so i connect eZ430-F2013 to my laptop using special usb hub, and my laptop finds it, but when i try to dump code into the Ez430-F2013 using Code Composer Studio it returns me "MSP430: Error initializing…
0
votes
0 answers

CC13xx define interrupt handler

I am working with a CC13xx (ARM M3 core) from TI using Code Composer. I started with their no RTOS UART example, which works fine. I would like to add a systick interrupt handler. Unfortunately, there is no start-up file (which is where I would…
0
votes
0 answers

How to integrate pvs-studio in a TI CCS project

I'm trying to use pvs-studio to analyze a TI Code Composer Studio project. As mentionned in the documentation I ran strace to get the trace files out of my build process. Here the command I used : pvs-studio-analyzer trace --…
0
votes
0 answers

Code Composer - Eclipse IDE menu color settings

I'm using Code Composer Studio 12 with the custom theme "spectrum". Even if I love this color scheme, I struggle to find a possible solution on how to change the IDE menu colors and the selected item color in the preferences menu. Does anyone knows…
UncleSax
  • 148
  • 2
  • 16
0
votes
1 answer

Understanding of #pragma CODE_SECTION

I use ubuntu 20.04, code composer studio 12.00. Can you please explain for me what does it do: #ifdef FLASH #pragma CODE_SECTION(motor1_ISR, "ramfuncs"); #pragma CODE_SECTION(motor2_ISR, "ramfuncs"); #pragma CODE_SECTION(xint1_ISR,…
0
votes
2 answers

How to change the values defined in header file in embedded c during runtime?

I am working on a project using MSP430FR6047 and there is certain header file I need to access and change parameters previously defined. At the moment I have to flash the MCU with modified header file every time I change the parameter but I was…
Antony
  • 13
  • 6
0
votes
1 answer

How can I solve the "Composer Update" Issue?

I have run "Composer Update" before, Then it runs smoothly. But from today I got the error mentioned in the image. Need help regarding the issue. The error says: In Process.php line 355: Unable to launch a new process. Note: PHP artisan…
0
votes
0 answers

#29 expected expression - C compilation

I'm programing on Code Composer Studio a program that generate and show a sinusoid, this program should normally be implemented in a DSP, but since I don't have the DSK I'm just compiling it and trying to show the result in CCS. I'm having a problem…
ZAINEB
  • 1
0
votes
2 answers

Using the terminal to return "hello world" with MSP430 Launchpad and CCStudio

I am trying to run "Hello world", the most simple and basic code there is, on an MSP430 Launchpad (specifically, the MSP430FR5994 Launchpad). I want to run this and have it be displayed on the CCStudio console or another screen. However, I can't…
HFOrangefish
  • 267
  • 1
  • 10
0
votes
0 answers

MSP430F5137 SPI-UART Bridge

I am working on a SPI-UART bridge connection with an MSP430F5133 to RHD2132. The code was compiled using Code Compose Studio. This is the current code I have but I am still having issues #include #include uint16_t…
Erik
  • 1
0
votes
1 answer

Board: EK_TM4C123GXL error in any new progect in Code Composer Studio Version: 11.1.0.00011

What am I doing wrong? The new EK_TM4C123GXL board does not work. The Hello World project builds fine, but when flashing or debugging this project, an error occurs: CORTEX_M4_0: GEL Output: Memory Map Initialization Complete CORTEX_M4_0: Loader:…
0
votes
1 answer

Unexpected Redefinition Error in CCS #10056 in Code Composer Studio

I have the problem, that in CCS I encounter unexpected redefenition errors if I include headers. Minimal example: // main.c #include "test.h" int main(void) { init(); return 0; } with // test.h #ifndef TEST_H_ #define TEST_H_ int…