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
1
vote
2 answers

Generating C code from a Matlab-Simulink model for DSP C6748

I'm trying to generate C code from a Matlab-Simulink simple model (eg.: sine wave generator with a DAC at the output). This code must be executed with Code Composer Studio for TMS320C6748 DSP (Texas Instrument C6748). Specifically, for the…
Juanma
  • 21
  • 1
  • 5
1
vote
1 answer

Can not running command to run Code Composer

Ubuntu Version: 19.10 Code Composer Version: CCS10.1.0.00010_linux-x64 I'm trying to install the Code Composer at Linux. But at README into Code Composer file, say this. Code Composer Studio for Linux…
Vagner Wentz
  • 391
  • 1
  • 7
  • 29
1
vote
0 answers

Code Composer Studio MSP430 Unresolved Symbols LoRa LMIC

I am getting unresolved symbols with the invocation of the LoRa lmic Lib function. LMIC_setTxData2(1, mydata, sizeof(mydata)-1, 0); These are the error messages: undefined | first referenced symbol | in file onEvent …
1
vote
1 answer

Trick gmake build/ Copying files to preserve time stamps and avoid complete rebuild

short background info: For some rather convoluted reasons I am trying to trick my projects build system. We are working with Code Composer Studio on Windows from Texas Instruments and the gmake implementation that was included. We use the standard…
Mange_Man
  • 41
  • 1
  • 6
1
vote
1 answer

STL link error with CodeComposerStudio

I'm compiling an mixed C/C++ program using STL with CodeComposerStudio. I have many compiler remarks and link errors compiler remarks !defined(__MINGW32__) !defined(__MINGW32__) "C:/CCStudio_v3.3/C2000_v5.2.5/include/yvals.h", line 470: remark…
TridenT
  • 4,879
  • 1
  • 32
  • 56
1
vote
1 answer

How can I setup a shared library between a bootloader and an application?

I am in the process of implementing over-the-air updates on a CC2652 microcontroller using the OpenThread stack. As far as I know a bootloader has to be able to operate independently from the application and be as small as possible. But for the…
1
vote
0 answers

Eclipse slow on headless build

I have a series of projects that I regularly build both through the IDE and through the headless build application. I have noticed that whenever I use the headless build, the build takes much longer to execute, but from the logs the time needed to…
bracco23
  • 2,181
  • 10
  • 28
1
vote
2 answers

MSP432 ARM - Declare array of constants by using Assembly

How to declare array of constants in flash using only assembly not C? The question says it all, I believe. Other than within the assembly code itself, I will want to access and iterate through that constant array of values. I am using Code Composer…
1
vote
1 answer

how to create an assembly-only project in Code Composer Studio (CCS) for TI MSP432 series

I can copy some existing assembly project, however there are a lot files associated with it that I wonder if they are necessary. Another way of re-phrasing this question would be, is I wanted to set up either CCS or Eclipse to build/install/debug an…
ecorrales
  • 137
  • 11
1
vote
1 answer

Sound Sensor RGB LED coding

So we connected a sound sensor to our board to light up our LED light when sound is heard, it kinda works but there some hiccups. We tried messing with the code for a while but no matter what we do the senor will only react to loud even when we put…
1
vote
1 answer

Code Composer Studio: build fails with message "cannot open file"

I have several Code Composer Studio projects which have compiled successfully, but now they all fail at the linking stage with the error message "cannot open file" then the name of the first first .obj file to be linked. I am certain that the…
Nigel Davies
  • 1,640
  • 1
  • 13
  • 26
1
vote
1 answer

Code Composer Studio Skipping Breakpoints When Compiling with GNU

I'm attempting to debug a program in Code Composer Studio compiling with the GNU toolchain rather than the default TI, it's my understanding that CCS by default only places CCS breakpoints which are not recognized by the GDB when working in a CCS…
1
vote
2 answers

Compiler reports 0 for sizeof(unit32_t) in Code composer

I am working on C++ based project where i am getting one error for below statement: Code: typedef char pb_static_assertion_UINT32_T_WRONG_SIZE3507__COUNTER__ [ ( sizeof ( uint32_t ) == 4 ) ? 1 : - 1 ] ; // The line giving…
tkumar
  • 51
  • 1
  • 1
  • 4
1
vote
0 answers

mqtt_client project in CC3100 SDK gives linker errors

I am trying to build the mqtt_client project in the CC3100SDK_1.2.0, so that later I can integrate it into the getting_started_with_wlan_station project for further work. As suggested in the mqtt_client.pdf document, I built the osi_lib.lib and…
Deepak
  • 23
  • 5
1
vote
1 answer

TI CC3100 getting_started_with_wlan_station example gives linker error

I am trying to send some sensor values read through ADC on a port of MSP430F5529 to an access point using CC3100. I took the getting_started_with_wlan_station example from the CC3100SDK_1.2.0 and added the MSP430F55xx_adc_01.c code from the…
Deepak
  • 23
  • 5
1 2
3
12 13