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

Export data to XML with sepa-xml-php

please I need help I'm trying to create a SEPA XML file so I downloaded the sepa-xml with coenter image description heremposer in my project then I make the same code in the documentation to test if work or not so when I enter image description…
0
votes
1 answer

Change the SHELL used in TI Code Composer Studio's auto-generated Makefiles on Windows 10

I need the makefile generated by TI Code Composer Studio 10 to use SHELL = sh.exe instead of SHELL = cmd.exe. The insertion of the SHELL line seems to be specific to TI and not Eclipse. I can't figure out how to do this. I've tried setting…
Harvey
  • 5,703
  • 1
  • 32
  • 41
0
votes
1 answer

TYPO3 Database import

How can I import a database at my TYPO3 Backend? I use Visual Studio Code with composer as a SSH for the server where I write the code for backend. I also have an extension "external import" but im not sure if I can import a database with this…
0
votes
1 answer

CC2640R2L: Transmitting a CCS program to MCU chip via Bluetooth

I am considering to use the CC2640R2L Bluetooth wireless MCU by Texas Instrument on a PCB. I only want to use the MCU chip itself, not the whole CC2640R2F LaunchPad. The question I want to ask is, after I finished programming in CCS (Code Composer…
Aurora
  • 1
  • 1
0
votes
1 answer

Code Composer Studio: unresolved symbols remain

You may encounter a build error: 'unresolved symbols remain'. This may be because you have not installed CCS along with SimpleLink SDK properly for the MSP432. To fix this, here a solution that you can try, courtesy of my Professors:
REN
  • 65
  • 6
0
votes
1 answer

Save result from register into array[1000] without user input each time

Here is the Sample Code I am using, #include int main(void) { WDTCTL = WDTPW | WDTHOLD; // Stop WDT // GPIO Setup P1OUT &= ~BIT0; // Clear LED to start P1DIR |= BIT0; …
Jay
  • 1
  • 2
0
votes
1 answer

Weird correlation between I2C Transfer and Array size

So... i don't even know how to explain this... I have a cc1310 Launchpad XL and a tiny EEPROM. My task is to write a library for easy transferring. In Code Composer Studio I'm using an Example project from TI with TIRTOS to test my functions. The…
Kenny
  • 1
  • 1
0
votes
1 answer

Code Composer and Real Time Data Exchange: problems in Target to Host communication

dear fellow programmers! I'd really appreciate a few answers or hints concerning following problem: The topic is Digital Signal Processing (DSP), Code Composer Studio 3.1 and Real Time Data Exchange (RTDX), as explained in this paper. I've had a…
andy
  • 249
  • 3
  • 11
0
votes
1 answer

MSP432 Launchpad not recognizing when only one button is pressed

I am trying to create a program on the MSP432 Launchpad which will turn on the Green LED when neither of the two onboard buttons (P1.4 and P1.1) are being pressed and turn on the Red LED if only the P1.4 button is being pressed. With the code below,…
0
votes
1 answer

CCS CC2640R2 Reports and Debug of Bluetooth Config

I need help debugging the ble settings. I have a project that uses simple_peripheral and works perfectly. This project was developed last year. I have a hex file that works perfectly. The problem is that the sdk files were not added to SVN. We only…
0
votes
0 answers

Using an I2C 16x2 LCD with a MSP432 microcontroller in C Code

I am having trouble using a MSP432 and a I2C LCD. I have never used an I2C specific LCD and could use some help. All the libraries I saw strictly use C++ but I am going to need a C library. The current compiler I use is Code Composer Studio. I…
Mbappe
  • 1
0
votes
0 answers

Use timer A0 to blink the onboard LEDs connected to pins 1.0 and 4.7 at a frequency of 1 kHz and duty cycles of 0.25 and 0.75 respectively

I'm using an MSP430F5529 board and CCS to program it for this problem. My code is as follows: #include int main(void) { WDTCTL = WDTPW | WDTHOLD; //stop watchdog timer P1SEL |= BIT0; //configure P1.0 as…
0
votes
0 answers

Syntax Error: Unterminated Quoted String when using Intel's PIN tool on controlCARD executable

I am having some issues with Intel's PIN tool when obtaining the dynamic trace from a program's executable. I have previously used this tool on other programs successfully. I wrote some code for TI's Piccolo TMS320F28035 Isolated controlCARD. I was…
apk190000
  • 65
  • 7
0
votes
1 answer

Running a C application from a different address than 0

I have two applications one is just starting the second application on the adress 0x20000 I can debug in the first application and it reaches the line that will redirect to the 0x20000 the address. The code from the first application looks like…
0
votes
1 answer

HC-05 Bluetooth module needs every Instruction 3 times

I am trying to control some LEDs through an TM4C123GH6PM microcontroller. I wrote an Android app, that connects to the microcontroller via Bluetooth and Sends Strings to the HC-05. The HC-05 sends the commands via UART to the microcontroller. It all…
CL4PTP
  • 3
  • 2