This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

how to display data using graph menu??

hello ,my board is 6678Le,my ccs version is CCS5.3. i want to use the graph fuction to display data which is defined from my project . int x[4096]={...}   the dot in the "{}" denotes  sinewave data i want to display.

so  i set a breakpoint under the vector'x' , i just to display the data pointed  by 'x' .  after program stoped at the breakpoint ,i select  'graph' from 'tool',and select 'single time',and set the address of the data at "x",and set the number of elements of the vector 'x' at 4096 from "data Size" properties dialogue. howerer ,the subsequent displaying interface  is blank  other than what i want to display. how it could hapened? who to display my data correctly?

2:after I connect my board to CCS. sometimes i select 'graph' from 'tool' , the graph menu is not active. how to solve this problem?? thanks

  • Hello,

    I'm not fully clear on how you want to display your data but if I understand correctly, you want to diplay the entire contents of the array in a graph. If so:

    -set the Start Address to: &x

    -set the Acquisition Buffer Size to: 4096

    -set the Display Data Size to: 4096

    After your array is initialized, refresh your graph.

    jian zong1 said:
    2:after I connect my board to CCS. sometimes i select 'graph' from 'tool' , the graph menu is not active. how to solve this problem?? thanks

    This usually mean you do not have the proper debug context or maybe your perspective needs resetting.

    Thanks

    ki