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

Code Composer Studio error

I am a new user to Code Composer but I have an average knowledge of C and C++ coding. I have done some arduino and ATmel mega (standalone) projects and now I took it to the next step by starting to create a project with the MSP430Launchpad. So I…
kokk.nik
  • 39
  • 10
0
votes
2 answers

Calculating a running average

The running average calculated from circular array produced constant < 0 average when average should always be between 0 and 1. I am writing firmware for an MSP430 device that uses LEDs and photodiodes to detect specific types on ink. The device…
Kyle G
  • 71
  • 10
0
votes
2 answers

Circular Array Stuck in if statements

I am writing firmware for an MSP430 device that uses LEDs and photodiodes to detect specific types on ink. The device scans at about 155us and the samples under the scanner range from velocities of .1m/s to 3.3m/s. The goal of the device is to…
Kyle G
  • 1
  • 3
0
votes
1 answer

Trying to poll for a MSP430's Keypad Input

I'm working on a really simplified version of space invaders. I generate some aliens then as time goes on I lower them closer to the bottom of a screen which I'm just using arrays for. I've got it generating and lowering the invaders but when I…
Mel Moore
  • 79
  • 2
  • 3
  • 9
0
votes
2 answers

Why HM-10 doesn't send an OK if i send AT from an MSP430 Launchpad?

I'm trying to set up an UART communication with a HM-10 chip on a Texas Instruments MSP430 Launchpad, but I ran into a very elementary problem. What I want to achieve is to send an "AT" through UART to HM-10, and receive an answer for that. By the…
boomkin
  • 362
  • 2
  • 14
0
votes
0 answers

Error with TI f28m36 in code composer studio

In CCS when i want to program in flash memory it stops and says that can't write in sector N. Can everybody help me? What's wrong?
0
votes
0 answers

generating a 1 pps using a msp430 micro controller

I'm new to this field of microcontroller and i need you quick help with a new project of mine. I'm using MSP430F5131. I will explain a little about the project : My main goal is to generate a 1 pulse per second using a 12.8MHz external…
0
votes
1 answer

Const Strings Array in C

I want to have a constant character array of which each array element to be passed to function in runtime. I have written them in following way: const char *IntenistyVal[] ={"1","2","3","4","5"}; and The function is Test(const char *pText) (I…
0
votes
2 answers

How do I store an unsigned short into a char array? C language

I'm a beginner in C language, I was wondering how I store an unsigned short into a char array? unit16_t is unsigned short, and below is my code. uint16_t combined = 1234; char echoPrompt[] = {combined}; EDIT: Sorry for being unclear I need…
Johnathan Logan
  • 357
  • 5
  • 14
0
votes
0 answers

How to read from file in c++ in ccs in linux ?

I have got a problem, I want to write code which reads from file, i tried ifstream type but it doesn't work on my linux. Does anyone had similar problem ? I write this code in Code Composer Studio,on Code Blocks it works. i have an error that say…
ewaw
  • 1
  • 2
0
votes
1 answer

For Msp430 controller coding

".x.c.swp .ccsproject .cdtbuild .cdtproject .project x.c x.h hardware.h .cmd readme.txt" these are the files given as a source file for my evaluation board. How can i approach these files?
Rajesh Rajendran
  • 144
  • 1
  • 1
  • 5
0
votes
0 answers

energia compilation error error _fini

I am using Energia with cc3200 TI Evaluation Board and I have added a wavelet library from this link but after editing the library source file and compiling it gives this…
juzar
  • 1
  • 1
0
votes
2 answers

CC3200 SPI Slave bad receive

Solved: I had to handle CS/NSS pin for slave. Add some delay before and after TX. void SlaveMain() { MAP_SPIReset(GSPI_BASE); MAP_SPIConfigSetExpClk(GSPI_BASE,MAP_PRCMPeripheralClockGet(PRCM_GSPI), …
0
votes
1 answer

Cannot find header files

I am working on lwip TCP/IP stack on a TI microcontroller board. To simply explain, I have two source folders "ipv4" and "ipv6". Both have their corresponding folders for header files in the "include" folder. Both have some functions and structs…
0
votes
1 answer

CC2650 Programming to execute different statements with single button press

I am trying to code an OLED which consists of 2 buttons interfaced. The working is as follows: With the first button press it should switch on the OLED, show the opening screen. Then by pressing the 2nd button each time it should keep on changing…