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

Git does not properly detect modification of certain files?

I've noticed that Git does not properly detect modified .out files (which are already in the index) generated by TI's Code Composer Studio (Eclipse). After compiling/building, calling git status shows .out files under changes to be committed (as…
derrick
  • 177
  • 1
  • 1
  • 7
0
votes
1 answer

code composer - unresolved symbols remain

I try to read gyro data. When I build, I always get some link error. My output, as follow; **** Build of configuration Debug for project mpu6050_v1 **** "C:\ti\ccsv7\utils\bin\gmake" -k -j 4 all -O 'Building file: ../main.c' 'Invoking: ARM…
Yılmaz edis
  • 146
  • 3
  • 13
0
votes
0 answers

unable to write data into the file using fopen in CCS

#include #include #include #include /* Array to store SD24_B conversion results */ unsigned int results[3]; //SD24 converter result array unsigned int ADC_Result[6]; …
KD0704
  • 9
  • 1
0
votes
0 answers

sqrt Function from math.h Library Causes Entire Program to Stop Functioning After Compiling

I am using Code Composer Studio to work with an MSP430 MCU. These are the specs that I am working with: CCS version: 5.5 Compiler version: TI v4.1.9 Compiler Optimization Settings: Optimization = 0 MSP430: MSP430F5528 I'm starting with a…
Kyle G
  • 71
  • 10
0
votes
1 answer

Why does upgrading to a higher Version of Code Composer Studio/Compiler increase the size of the program for MSP430-F148?

I have a tested, working, and shipping firmware program (C language) for the TI MPS430-F148 micro-controller. It was carefully crafted to fit into the available memory, developed with TI's Code Composer Studio version 5.2.1/compiler version 4.1.1. I…
Mike Jablonski
  • 1,703
  • 6
  • 27
  • 41
0
votes
0 answers

How can I acquire Temperature using TI SimpleLink Wi-Fi CC3220SF-LAUNCHXL and display the temperature in 430BOOST-ADS1118 Boosterpack?

Energia returns an error "Can't compile for boardCC3220" So we are unable to get temperature data from ADS1118. We are also facing same issue in CCS V7.3 with SDK downloaded for CC3220. We have succesfully done temperature logging with Arduino…
0
votes
0 answers

I2C on eUSCI_B/MSP430FR5739 never fires interrupts while accessing sensor

I have three INA226 current sensors connected to eUSCI_B, P1.6 and P1.7, on an MSP430FR5739 microcontroller. My I2C write addr code gives just one NACKIFG, and then forever hangs. On the scope the signals look nearly perfect square, no overshoot and…
Thomas
  • 1,468
  • 4
  • 14
  • 20
0
votes
4 answers

MSP430 LED Not Blinking At All

I've been trying to turn on the LEDs on my MSP430G2553 and it just doesn't work. I've tried the code examples from TI, the pre-generated code composer studio LED blinking project, and even previous code that worked on an MSP430 from the past. None…
charlee
  • 31
  • 1
  • 8
0
votes
0 answers

Overloaded Composition Object Instantiation and Usage Questions

I'm feeling a little confused regarding C++ Composition with overloaded constructors. I have read these other articles here, here, and here but still feel like my question is a little different from those. The first one was the most helpful and I…
0
votes
2 answers

C code in code composer studio

So the question is: Write a program in C such that it contains a function which calculates the third power of a given integer. It should calculate the third power of numbers between 1 and 10 using your function and the results should be saved in an…
0
votes
0 answers

CCS MSP430 Bluetopia Linker

I am trying to implement the Bluetopia stack using the MSP430F5635 MCU and the CC256 bluetooth chip using Code Composer v7. When I try to build my project, I am getting the error: "unresolved symbol BSC_Initialize ...". I have the BSCAPI header file…
0
votes
1 answer

How much time does it take to get from the end of a for loop back to the beginning on an msp430?

I am asking this because the code below is what I'm using to make the 2 two leds perfectly alternate their flashing. But it doesn't really make sense as to why this works. This loop with 2 xor's has 2 states one with pin1(red lit only) active and…
Destreation
  • 105
  • 1
  • 2
  • 12
0
votes
1 answer

MSP430 Syntax: Assembly & C Questions

I am coding an msp430 using the code composer, my questions are below: --What specific assembly language does it use? (I am looking for a guide to learn the syntax but cannot find the name of the language.) --What is a list of addressable…
Destreation
  • 105
  • 1
  • 2
  • 12
0
votes
1 answer

MSP430 Code Composer- Project builds and runs but changes do not show on board

As the title says its not giving me any errors when i build and run in code composer, but nothing happens on the baord. It even says the normal : "MSP430: Flash/FRAM usage is 84 bytes. RAM usage is 80 bytes." The code is below, should just light…
Destreation
  • 105
  • 1
  • 2
  • 12
0
votes
1 answer

Using port interrupts and timers on CCS

I have a problem with LEDs. 2 buttons as input and 3 LEDs and 7 segment display as output. If we will push choosing button once, we can observe “1” at the 7-segment display. When the confirmation button is pressed, Green LED will be turned on…
ccs
  • 37
  • 1
  • 4