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.

关于Graph Properties的设置

如果想要监视变量Unit32 pluse_number ,每1ms加1,Graph Properties的设置应该怎么设定?

acquisition buffer size    1

dsp data type     32 bit unsigned interger

index increment    1

Q_value                    0

sampling rate HZ   1000

start adress      pluse_number

 

  • Graph最快只能100ms更新一次,所以你应该看不到你的变量是从1,2,3,4这样加上去的。Buffer size是指存在缓存里用于graph显示的数量,所以需要比较大,比如40,120。

  •  

    你需要在pluse_number前面加&符号。由于只监视一个变量所以buffer size 为1。既然是每1ms加1,那么下面的time display unit设为MS

     

  • 10#说Graph最快只能100ms更新一次,1ms加1应该显示不了,是不是只有把这个变量放入DBUFF里,然后显示整个buff里的数值。

  • 是的,如果要看到完整的而不是通过系统插值得到的图像,就需要如10#说的那样用到比较大的buff,把这个变量放入buff里,然后显示整个buff里的数值。