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 to add MS EDGE in Eclipse from MarketPlace or is there any source to import

This image is for reference, and am trying to get the same to my preference list, tried downloading collabNet, polyglot .. please suggest which will do the same - or is there any external source to import!
0
votes
1 answer

MSP430F5436A Lock Up

We have a product that uses an MSP430F5436A. It has been in production for several years. Over the past several months we have had reports from production that a few units are not shutting down completely, their power LED is staying on. The power…
Nick
  • 1,361
  • 1
  • 14
  • 42
0
votes
1 answer

Wait until user enters the value and assign it to var

It is sort of trivial issue, but it is still taking my tame for the last several days. I am trying to get the user input and wait until the user enters the value, but my program doesn't do it. I would be grateful, if someone could help me out…
Sean
  • 59
  • 7
0
votes
1 answer

CCS/MSP430FR6989: Capture/Compare Interrupt not working with HR-S04 Ultrasonic Sensor

I am currently trying to interface the HR-S04 Ultrasonic Distance Sensor to the MSP430FR6989. I have found several times over where the code has been written, yet the code that supposedly works for others will not work for me. One difference between…
Jenks
  • 53
  • 8
0
votes
1 answer

Using TI CCS v3.3 with a TMS320F2812 how can I define specific data at a specific address in the DSP's flash memory and exported bin file?

I'm trying to place specific data at a specific address in my DSP's flash memory. What I've tried so far works well until I try to generate a raw binary file that we provide to customers for firmware upgrades, the data is stripped from the binary…
CHollman82
  • 576
  • 1
  • 8
  • 28
0
votes
1 answer

Disable 64-bit division in Code Composer Studio compiler

I'm currently writing a program in C using Code Composer Studio (CCS) V7.4.0.00015. The program has several self-written libraries that perform Byte, unsigned int and float division. I have reached that stage in the project where I need to reduce…
0
votes
1 answer

How do I detect if an installation of Code-Composer-Studio is licensed?

The licensed version of the CCSv4 can be used to create programs with more then 16kByte code. When I have a PC with Eclipse/CCS installed, how do I detect, if the current version is licensed without writing source code for more than 16kByte code…
harper
  • 13,345
  • 8
  • 56
  • 105
0
votes
0 answers

Control where CMake puts libraries in link command

I am trying to set up my CMakeLists.txt for a C++ project using a cross-compile toolchain (e.g. TI Code Composer Studio). I almost have it, but am stuck when it comes to adding a library to a link command. Boiling it down to basics, the tools want…
Bob
  • 587
  • 8
  • 17
0
votes
0 answers

Check status of a non-interrupt pin?

So I am aware of how to check the status of a pin that has an interrupt enabled. This is done by using the following code: uint8_t status4; status4 = MAP_GPIO_getEnabledInterruptStatus(GPIO_PORT_P4); What I am unsure of, and am unable to…
LightMan
  • 1
  • 1
0
votes
2 answers

Interrupt is not triggering. Any ideas as to why that is?

I'm programming in C on an MSP432 using Code Composer Studio v8.2.0. Now I am writing an interrupt to use 4 different buttons to increment and decrement a variable. The code below cuts out two of those buttons and is simply trying to increment or…
LightMan
  • 1
  • 1
0
votes
1 answer

MSP432p401r: What are the possible inputs to CTLW0->BRW?

The project I am working on includes i2c. I am looking through the datasheets and I cannot find how to use the prescaler setting, BRW. The section on this register does not tell me anything. It is here on the top of page 982. How does this register…
ardee
  • 7
  • 1
  • 5
0
votes
1 answer

MSP432p401r: Where is this declaration?

I am attempting to move some of TI's driverlib functions over to my own drivers so that the code is smaller and easier to handle. However, I am having a lot of trouble with the driverlib, specifically the eUSCI declarations. This line: /* Disable…
ardee
  • 7
  • 1
  • 5
0
votes
0 answers

Run -> Debug not appearing in Code Composer Studio

I just started programming with Code Composer Studio. I am using MSP430G2553 MCU. I followed this tutorial, added code to toggle LED and built the project to which I got following output: **** Build of configuration Debug for project Float Precision…
Tehreem
  • 939
  • 2
  • 14
  • 31
0
votes
0 answers

TM4C123 I2C Library to Arduino Wire Library for MPU6050

I study to read MPU6050 gyro data but the main problem is that I could not achieve. Let me to explain why this problem happen. I found MPU6050 example for Arduino MPU6050BasicExample. I have started to change basic Arduino example. Then I applied…
Yılmaz edis
  • 146
  • 3
  • 13
0
votes
3 answers

Galois pseudo random number generator doen't work for 16-bit maximal-period in code composer studio

I am using MSP430FR5969 microcontroller with code composer studio IDE to make a pseudo-random number generator. I referred to this wikipedia page for that. It works fine with 8-bit but in case of 16-bit, the control doesn't go the lines after the…
ggn993
  • 27
  • 7