DSPRelated.com

how to watch variables (real time) in CCS

Started by Jin in Code-Composer Studio19 years ago 3 replies

I run a program in CCS ver 2.1. I would like to watch a few vriables. But I only can look at the variables when I halt the program. When...

I run a program in CCS ver 2.1. I would like to watch a few vriables. But I only can look at the variables when I halt the program. When the program runs, the variable value is not updated. Is there any way I can watch the variables (being updated) during the program running? Thanks Jin


Displaying float variables in Watch Window of CC 4.10.36

Started by mikhail_iv in Code-Composer Studio20 years ago 2 replies

I have a problem regard displaying float variables in Watch Window of Code Composer 'C3x-'C4x. Float numbers in Watch Window...

I have a problem regard displaying float variables in Watch Window of Code Composer 'C3x-'C4x. Float numbers in Watch Window does'not corresponded to float numbers assigned in program. How can I resolve this problem?


Watch window bug

Started by Torgeir Jakobsen in Code-Composer Studio23 years ago

Hi There is obviously something wrong with the watch window in CSS1.20. Some of the variables is shown with incorrect values....

Hi There is obviously something wrong with the watch window in CSS1.20. Some of the variables is shown with incorrect values. The program is working, because I can see that the correct value is written to the correct address if I look in the memory window. A refresh of t


Hex values in Watch Window

Started by Anonymous in Code-Composer Studio23 years ago 3 replies

Dear All I would like to ask whether it is possible to display hex values rather than decimal values in the watch window, if...

Dear All I would like to ask whether it is possible to display hex values rather than decimal values in the watch window, if possible do you know how? Thanks Garfay


Code Composer Studio v1.23 - Using the Watch Window with local variables

Started by Quang Thai in Code-Composer Studio21 years ago 1 reply

Hi everyone, My name is Quang and I've just subscribed recently to this list. I'm a student at the University of Technology,...

Hi everyone, My name is Quang and I've just subscribed recently to this list. I'm a student at the University of Technology, Sydney. I was wondering if anyone is aware of any known problems or issues with regards to using the Watch Window to monitor local va


watch problem with CSS v2.21 and f2812

Started by Anonymous in Code-Composer Studio19 years ago

Hi, I'm new here so a big hello to everyone at first. I have a problem with the watch window in CCS v2.21 in combination...

Hi, I'm new here so a big hello to everyone at first. I have a problem with the watch window in CCS v2.21 in combination with the= f2812 (eZdsp board). I can add a variable to the window but it's not update= d on any brake point and it shows a strange


newbie question-registers window watch

Started by Georgios Chatzigeorgiou in Code-Composer Studio22 years ago

I'm using the 5402 dsk, and Code Composer 1.2 that came along with the kit. I'm trying to execute some code (assembly) in single...

I'm using the 5402 dsk, and Code Composer 1.2 that came along with the kit. I'm trying to execute some code (assembly) in single step mode and view the changes in the register watch window. Yet, the register values a


Enumerated types in watch window

Started by T.Hupp in Code-Composer Studio23 years ago 1 reply

When watching enumerated types the watch window CC1.0 showed the real name of the variable, for example, a variable of type...

When watching enumerated types the watch window CC1.0 showed the real name of the variable, for example, a variable of type TColor (see below) showed "red", "green" or "blue" on the window. typedef enum {red, green, blue} TColor;


Thanks

Started by Anonymous in Code-Composer Studio23 years ago

Just say thank you to everyone who replied, to my watch window thing.

Just say thank you to everyone who replied, to my watch window thing.


C55xx simulator

Started by Torgeir Jakobsen in Code-Composer Studio22 years ago 7 replies

Hi I am working on a project where we are using the TMS320C5510 DSP. I have started to simulate the code using the C55xx...

Hi I am working on a project where we are using the TMS320C5510 DSP. I have started to simulate the code using the C55xx simulator. When I add a variable to the watch window to see if it is changed as expected it does not change the value at once after an instruction is


Audio Output Errors

Started by thed...@yahoo.com in Code-Composer Studio16 years ago

I recently got all of my code to work properly and display normal behavior in the watch window, so I'm beginning to listen to the output of the...

I recently got all of my code to work properly and display normal behavior in the watch window, so I'm beginning to listen to the output of the program. As I expected would probably happen, the output is not correct. To run simple testing, I place the following lines at the beginning of my program for(i = 0; i < dwNumNewSamples; i++){ while (!PEP5416_AIC23_read16(hCodec, &buffer[i]));


Negative values in array

Started by thed...@yahoo.com in Code-Composer Studio16 years ago 6 replies

In my project, I initialize an array as follows: float tempC[10]={2.4, -2.4456, -0.12564, -1.456, -4.235, 3.426, -3.876, -9.235, 1.2354,...

In my project, I initialize an array as follows: float tempC[10]={2.4, -2.4456, -0.12564, -1.456, -4.235, 3.426, -3.876, -9.235, 1.2354, 10.02}; After this, I assign the values of tempC to a global array in order to check the values in the watch window of the main program. When I check the values, I get the following numbers: {2.4, 1.2354, 10.02, -1.456, -4.235, 3.426, -3.876, -9.235, 1....