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

Chained dependency order in Eclipse CDT

I'm attempting to utilize the "Project References" feature in Eclipse for an embedded firmware project. I'm using Code Composer Studio 7.0 which is essentially just a wrapper for Eclipse 4.6 with CDT 9.0 and JRE 8. However, from what I can tell…
kwelliott
  • 204
  • 3
  • 10
1
vote
1 answer

CCS: MPU6050 Sensorlib

I'm Using TM4C123G board and I have followed the example given in the 'SW-TM4C-SENSORLIB-UG-1.1.pdf' for interfacing MPU6050, But I'm facing trouble in generating the I2C communication. Is that example is enough or should I extra line for…
1
vote
2 answers

Why is my C program skipping over this if statement?

I have this C program that I am writing in code composer studio. #include /* * main.c */ int main(void) { WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer int R5_SW=0, R6_LED=0, temp=0; P1OUT = 0b00000000; //…
Matt
  • 2,232
  • 8
  • 35
  • 64
1
vote
0 answers

what is the difference between "VLIB_malloc" supported by TI Cx66 Vlib and c function "malloc"?

in the TI document it says " Following should be called to allocate buffers passed to VLIB functions for each test vector" before the define of "VLIB_malloc" function. can someone tell me what maybe the difference between VLIB_malloc and c function…
myej
  • 65
  • 5
1
vote
0 answers

TMS320C6713 has problems with interrupt timing?

Im working with CCS5v5 on Win7, DSK6713. I have tow different c Files and one header(white_noise.h). There are two different scenarios I can build and debug, and it works-> with adding the header white_noise.h and with N=128(in NLMS.c, Filter…
1
vote
1 answer

c++ compilation error for class in code composer studio for arm

compiler version : TI v15.12.1.LTS Family : ARM Varient : Tiva TM4C123GH6PM When try to build c++ class in main.c It is giving below error **** Build of configuration Debug__TI for project Lab1 **** "C:\\ti\\ccsv6\\utils\\bin\\gmake" -k all…
Sachin
  • 501
  • 10
  • 18
1
vote
1 answer

How to create a new project from an exisiting project in Texas Instruments Code Composer?

I would like to archive a finished version of a C program for the MSP430, programmed using TI Code Composer Studio version 5.2.1, creating a new project for a new version I’m going to add new features to. Attempts to follow TI's documentation and…
Mike Jablonski
  • 1,703
  • 6
  • 27
  • 41
1
vote
5 answers

Converting decimal to BCD

I'm working on an assignment currently that uses a microcontroller and a circuit to display a decimal in binary, through LED's. I have to use three push buttons: one to increment, one to decrement, and the last to reset. I have my wiring and…
MarineUTEP
  • 33
  • 1
  • 1
  • 7
1
vote
1 answer

How do I calculate distance between GPS co-ordinates using Microcontroller chip

I need to calculate the distance between GPS co-ordinates to calculate distance being traveled. I've tried both the Haversine and Vincenty algorithms, which work fine on my desktop PC, but when I use the same code for MSP430 chip using CCS IDE, the…
shafi
  • 145
  • 6
1
vote
3 answers

Code Composer Studio - TI CC3200 Launchpad

How can I upload the example "blinky" to the TI CC3200 Launchpad "firmware"? I mean, I would like to plug in the board and the blinky example starts automatically on the startup of the board. Thank in advance
gonsays
  • 13
  • 5
1
vote
1 answer

CMake: Header files cannot be opened

I am working to build a Code Composer Studio project using cmake, which is new to me. It builds successfully under Linux but I am struggling to get it to work under Windows. The cmake command executes without issue, but make fails during the very…
1
vote
1 answer

how to know data memory & program memory usage?

I would like to know how much data memory and how much program memory i've used on my microcontroller (a cortex M4)? I am using code composer studio from texas instruments.
1
vote
1 answer

Errors on generating code

I don't know if anyone on stackiverflow can help me but I'll give it a try. I'm trying to make a project using Simulink and F2812 processor. I've done all configuration needed. Whenever I try to generate code I'm getting this error all the time: The…
Tiggons
  • 11
  • 3
1
vote
1 answer

Error when compiling in Code Composer Studio - Tiva C Series

I am trying to run Lab 3 exercise from the Getting Started with the Tiva (page 71). I am using Tiva C Series TM4C123GH6PM with Code Composer Studio 6.0.1 . My code is as folles: #include #include #include…
Metalzero2
  • 531
  • 2
  • 6
  • 17
1
vote
0 answers

MSP430 Eclipse CDT (code composer v6): remove the echo statements "building", "invoking" "finished" from makefile

I'm building a MSP430 project in code composer studio. My CDT build reports building file: [...], invoking: [...] then finished building: [...] for every file compiled. This is a rather verbose output and unless I'm trying to fix/adjust something…
Michael
  • 2,118
  • 1
  • 19
  • 25