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

Eclipse / CCS Bug - Uses All Memory On Clean Project

I'm having a problem with CCS6, which is based on Eclipse. I'm trying to build a demo project that comes with a TI MSP430 demo board. When I build the project CCS/Eclipse proceeds to clean the project, during which all the memory on my system is…
Drew Michaels
  • 11
  • 1
  • 3
0
votes
1 answer

msp430 ask for updating firmware when sending program

I'm using CSS to program an MSP430-f5529. The drivers of the chip are supposed to be installed as far as I cheked them on the administration field of my computer. The problem is that when I send a program from CSS to my chip it creates an error.…
0
votes
1 answer

OpenCV codes in Code Composer (CCStudio)

I'm using CCStudio v5 to implement a vision system and want to use OpenCV functions in my code, but I don't know it is possible to use OpenCV code in CCStudio or not! How I can import OpenCV library into my CCStudio project? Is this depends on my…
Soheil
  • 473
  • 9
  • 23
0
votes
1 answer

how to get 18 bit code address from symbol defined in linker command file

In Code Composer, you can define new symbols in the linker command file simply: _Addr_start = 0x5C00; _AppLength = 0x4C000; before the memory map and section assignment. This is done in the bootloader example from TI. You can then refer to the…
Mark Lakata
  • 19,989
  • 5
  • 106
  • 123
0
votes
1 answer

Memory Load/Save Utility in Code Composer 3.3

Apologies in advance for the dated software question: According to Code Composer help documentation the "Memory Load/Save Utility" should be be in the Tools menu. In my Code Composer 3.3 (which I have to use for this project, so I cannot upgrade),…
0
votes
1 answer

How to rename (refactor) a c macro in eclipse

I'm using Code Composer Studio which is based on eclipse Indigo. My Programm is written in C. I want to rename some macros via context-menu-->refactor-->rename. It is possible to get into "refactor mode" but eclipse refuses to do the refactoring…
Semjon Mössinger
  • 1,798
  • 3
  • 22
  • 32
0
votes
0 answers

Remote Power Reset (RPM) on EVM doesnt work

We have CI set up and very often our EVM boards (DSP boards) goes into a wrong state (reason unknown!!)and USB emulation was failing; to over come the issue we used to power reset the EVM board and everything used to work fine; Now we have started…
user2436155
  • 49
  • 1
  • 2
  • 4
0
votes
1 answer

The compilation of Miracl for the DSP C6713 of Texas Instruments

I was trying to compile the Miracl library by using Code Composer Studio V3.1. The target DSP is a C6713 made by texas instruments. I also added to the project the files: csl6713.lib, dsk6713bsl.lib,rts6700.lib and c6713dsk.cmd. The file in C is…
Mario Pinto
0
votes
2 answers

Difference between MSP430 binary files in Debug and Release folders in Code Composer Studio

I am currently using CCS Version: 4.2.5.00005. I am developing with the MSP430F5437A. I have found that whenever I build the project I am working on that under both the projects Debug and Release folder I find a .txt hex file. I have used the file…
Dustin
  • 89
  • 11
0
votes
1 answer

What is this eclipse file purple explorer icon?

Eclipse popped a new one on me this morning. See the circled icon in the image. I have looked at lots of links from similar posts on SO (though didnt find any for thsi exact icon) and none of the links have mentioned this. FYI this is in Texas…
Toby
  • 9,696
  • 16
  • 68
  • 132
0
votes
1 answer

Writing data to .cof file

I'm very new to coding and have been utterly baffled (for the second time today) by something google can't fix. I am writing code using Code Composer 4 on Windows. My code has no errors but the fopen("coffic.cof", "w") just doesn't change the data…
Ivo Johansen
  • 9
  • 1
  • 1
  • 2
0
votes
1 answer

Generating multiple product firmwares from single codebase using c2000 texas instruments code composer

At work we use a C2000 core Texas Instruments TMS320F DSP microcontroller. We started out with a single codebase and a single core product. Customer requirements have caused many modified branches to be made from our svn repository for different…
0
votes
1 answer

Board Support Library link error in ARM project

I have an ARM project (for Generic ARM9 Device) in Code Composer Studio ver5 (in fact it is the modified eclipse). Properties of project: Device: Generic ARM9 Device Compiler version: TI v4.9.1 Output format: eabi (ELF) ARM Linker…
Myosotis
  • 288
  • 4
  • 15
-1
votes
1 answer

Logic operator AND (&&) code composer is not working

I'm trying to write a code in which two conditionals must be meet in order to follow the cycle, but it's not working. If ((control = 10000 || control = 80000) && if((P2IN&0x02)==0) If I do this, it will give me an error while debugging, but I don't…
-1
votes
1 answer

code error when creating controller in laravel

code error when creating controller in laravel php artisan make:Controller KmsController RuntimeException Unable to detect application namespace. Illuminate\Console\GeneratorCommand::rootNamespace() and I tried: composer dump-autoload In…
1 2 3
12
13