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
1 answer

Definition of size_t for Code composer studio

I am trying to import arduino library to Code composer studio IDE. I imported it successfully, but i am getting some errors relating to size_t is not a type. I am aware that it has been defined in stddef.h header file. But i am not sure what has to…
0
votes
1 answer

converting emoticon unicode which comes from mobile application for web application

I was using emojione to convert emoticons but there is problem. When someone upload emoticon from mobile then something like, \ud83d\ude0c\ud83d\ude0c\ud83d\ude0c this unicode. emojione doesn't convert this type of code. Can anybody help me to…
Subhod30
  • 390
  • 2
  • 3
  • 14
0
votes
2 answers

SonarQube Plugin and TI Code Composer 5

I am currently working on a TI Microcontroller platform using Code Composer 5.5 as the IDE. Our code baseline is analyzed by SonarQube to produce metrics and issue identification against a set of rules and standards. SonarQube website mention…
0
votes
1 answer

When disassembling a DSP program, how to know whether the 32-bit data is an instruction or not?

I loaded a program using Code Composer Studio 3.3, and through the diassembly window we can see something like this: 00000C5C 00000000 NOP 00000C60 DD7ABCD2 .word 0xdd7abcd2 The first column means PC, the…
0
votes
1 answer

How to import projects from SVN to Eclipse workspace with parent folders?

I installed Subversive SVN connectors to Code Composer Studio v6 (an Eclipse Based IDE for DSP Processors, everthing written is also valid for pure Eclipse). I imported a project with Import/Import/SVN -> Projects from SVN. In SVN server I have the…
fercis
  • 611
  • 2
  • 12
  • 26
0
votes
0 answers

Can C macro expansions be used as Eclipse environment variables?

I have an Eclipse (Luna) CDT project and I'd like to automatically include build version numbers in the output file name. The build version is available in code as: #define MAJOR 1 #define MINOR 4 #define BUILDNUM 9 The…
mtbkrdave
  • 2,900
  • 3
  • 23
  • 24
0
votes
2 answers

Unable to put strings in an array after initialisation - CCS 6 with TI compiler 5.1.8 for ARM

I'm trying to setup a multilanguage GUI for an application running on AM335x processor; developing in CCS 6.0.1 and using TI compiler 5.1.8. The concept is to get enumerated dictionary arrays and then switch current dictionary pointer to one of…
Kurak
  • 86
  • 7
0
votes
1 answer

How do I set the alignment for the whole project in CCSv5?

I need to set the linker alignment for a whole project in TI Code Composer Studio 5.5 (TI ARM compiler 5.1.1). This is my linker .cmd file: MEMORY { BOOTROM: o = 0x40020000 l = 0x0000C000 /* 48kB public boot ROM */ SRAM: o =…
0
votes
2 answers

How can I view a graph of a signal in Code Composer?

Based on this document, section 6 it looks like I should be able to view a graph of a signal. I have Code Composer 6, so its different than these instructions. I click View -> Other and then type graph. But when I click on the Discrete Line Graph…
GuacoIV
  • 65
  • 5
0
votes
1 answer

Why is the counter increasing before decreasing?

P1DIR |= 0x01; // Set P1.0 (GREEN LED) to output direction P4DIR |= 0x40; // Set P4.6 (RED LED) to output direction P1OUT |= 0x01; // Set GREEN LED on P4OUT |= 0x40; …
0
votes
1 answer

Code composer inline function linker error

I am working with Code Composer Studio and I need to inline some functions. So I put them in a header file (or in .inl file referred by a header, both ways) and try to build my project. The problem comes when I increase the optimization level. The…
Rizias
  • 211
  • 6
  • 12
0
votes
1 answer

eclipse include custom files (c)

Not sure how to phrase the question. I've created a few files for my c project that I would like to use for multiple projects. Project root: ~/workspace/myproject Files : ~/workspace/myproject/customlib/myfile.h …
user3817250
  • 1,003
  • 4
  • 14
  • 27
0
votes
2 answers

MSP430 Function Call Being Skipped

I am programming an MSP430 microcontroller with the MSP430 LaunchPad Dev Kit and I am running into some problems on this simple code. #include void Delay(void); #define LED1 BIT0 //define LED1 as bit 0 (0x00) #define…
austincrft
  • 343
  • 1
  • 2
  • 13
0
votes
3 answers

MSP430 communication over USB

I just started programming an MSP430 2274 with Code Composer, and I'm wondering how to get the computer to output information from the MSP430. (Eventually, I want to send information from one MSP430 to another and have that information displayed on…
Lexie
  • 11
  • 3
0
votes
1 answer

Inline functions call Code Composer 5.4.0

I am suffering with a bizarre issue came up in the code am working in Code Composer. That is,in the code am working on there are some inline functions called,through an .inl file.Everything seem fine so far,the problem comes when instead of calling…
Rizias
  • 211
  • 6
  • 12