Questions tagged [ti-ccstudio]

Code Composer Studio (abbreviated to CCStudio) is an IDE published by Texas Instruments for its microcontrollers, microprocessors, DSPs.

44 questions
10
votes
2 answers

MSP430 Code Size in CCS

This should be pretty straight forward, but my google-ing is not turning anything up... I can build my project successfully in TI Code Composer Studio (CCSv5) and target my device. Now I want to know my program code size, so that I know how much…
vicatcu
  • 22,499
  • 13
  • 79
  • 155
7
votes
5 answers

Why does ADC conversion time vary?

I'm using TI Tiva C TM4C123GH6PM on a Launchpad combined with an AD 9850 DDS to create frequency modulator. Currently I have an extremely simple program which basically sets up microcontroller's peripherals and the AD9850 and then goes into a loop…
AndrejaKo
  • 23,261
  • 25
  • 110
  • 186
6
votes
1 answer

License dilemma Texas Instruments Code Composer v5 for Stellaris vs MSP430

As I read the screenshot below, I have to pick the license for Texas Instruments' Code Composer Studio v5 as follows: option 4: to use with a LaunchPad MSP430 option 3: to use with a LaunchPad Stellaris But I want to use CCSv5 for both Stellaris…
jippie
  • 33,033
  • 16
  • 93
  • 160
6
votes
1 answer

Sending debug information from MSP430 to CCS Console

I am debugging some code written for the MSP430F2132, which has very little flash memory available for the program. In order to debug properly, I must send information out to a terminal so that it can be stored and viewed at a later time. Normally I…
DerStrom8
  • 21,042
  • 8
  • 61
  • 95
5
votes
1 answer

How to tell CCS debugger where to start?

I am just starting with MSP430 and Code Composer Studio (CCS). I want to make a pure-assembly project. At the moment, I have a "hello world" program that does nothing but light an LED on the MSP430F5529 Launchpad. However, when I run this program in…
The Photon
  • 126,425
  • 3
  • 159
  • 304
5
votes
3 answers

Where is the C API reference for the MSP430? CCS version

I see a lot of sample code and tutorials, but where is it documented that symbols (defines) such as P1OUT and P1DIR are available and what are their semantics? I see a list with one-phrase comments in the header files, but that's the same as…
necromancer
  • 407
  • 1
  • 3
  • 11
4
votes
1 answer

MSP430 printf() through Spy-Bi-Wire hangs

printf() to console through Spy-Bi-Wire should be supported in the TI Code Composer Studio. Found this page, which explains how to enable printf(). But I can't seem to make it work. The program execution simply hangs, when it gets to printf(). My…
Nick Alexeev
  • 37,739
  • 17
  • 97
  • 230
4
votes
2 answers

Saving data in Code Composer

I have a circular buffer in my code (TI 28027) saving around 500 data points. Is there a way to easily save this data to a text file in Code Composer 4? Right now I am just using watch window, stopping the code and using copy/paste but I need to…
Szymon Bęczkowski
  • 2,595
  • 15
  • 21
3
votes
2 answers

Code Composer Studio v4 and MSP430 development

Does anyone have experience using CCSv4 to program for the MSP430 chips? I know msp-gcc is out there, and I'm sort of kicking myself for not using it, but at this point I'm stuck with CCSv4. I was drawn in by the fact that it was built on Eclipse,…
vicatcu
  • 22,499
  • 13
  • 79
  • 155
3
votes
2 answers

MSP430G2101 WDT not triggering

I have an MSP430G2101 and I need to use the Watchdog to trigger an interrupt. The code I am trying to use is the following: #include #include unsigned int cycle = 0; unsigned int pwmred = 1; void main(void) { WDTCTL =…
Flole
  • 33
  • 3
2
votes
1 answer

Code Composer Studio 6.1.0 debugger is not acting as it should

I am learning to code on a microcontroller from Texas Instruments, MSP430FR6969 (link), using MSP-EXP430FR6969 launch pad (link). I am also using an IDE CCS 6.1.0 (link). I am doing a simple odometer, where the program counts from 0 to 99,999 and…
Embedded_Dude
  • 589
  • 4
  • 25
2
votes
1 answer

XDS510PP-PLUS JTAG Emulator on windows 7

I'm trying to use a spectrum digital XDS510PP parallel port to jtag emulator to program an ezdsp board. It's not working and I don't see any problem except that it only supports up windows XP. Is it possible that it just can't work with windows 7?…
Ayeayeron
  • 475
  • 1
  • 4
  • 10
2
votes
2 answers

Reading MPU-6050 with MSP430g2553 using I2C

I´ve been searching for libraries or documentations for helping me reading from and writing to the acell + gyro breakout MPU-6050 from InvenSense. I managed to read it with the arduino's libraries made by Jeff Rowberg (Link), but now I want to use…
Nilo nilold
  • 23
  • 1
  • 3
1
vote
0 answers

How to correctly use prinft in code composer?

I am using CCS 5.x on Windows 7. The TI board is LM4f232. The following code performs A to D conversion of the on-board accelerometer. I am trying to use printf to see my variable values, but it is failing. #include "utils/ustdlib.h" …
gpuguy
  • 1,618
  • 8
  • 31
  • 54
1
vote
1 answer

Break at address "0xfffa" with no debug information available, or outside of program code (TI CCS MSP430)

I am trying to learn about UART communication with my MSP430FR6989 microcontroller from TI (link), and that is a link for the User Guide (link) The idea of my mini project is to connect the MSP430 uart_tx_pin to its uart_rx_pin, and enable the UART…
Embedded_Dude
  • 589
  • 4
  • 25
1
2 3