这个意思啊。我也没找到过你说的那种星座图。
你看\controlSUITE\device_support\f2806x\v150\F2806x_examples_ccsv5\cla_adc_fir下面的Example_2806xClaAdcFir.c文件
//
// Read the raw ADC RESULT1 register value and
// put it into the AdcBuf buffer
// This can be compared to the CLA filtered value
//
AdcBuf[SampleCount] = AdcResult.ADCRESULT1;
//
// Read the CLA filtered value and put it in the
// AdcFiltBuf buffer
//
AdcFiltBuf[SampleCount] = VoltFilt;
//
// Make sure that the buffer does not overflow
// the buffer size. If it is larger than ADC_BUF_LEN
// then rewind back to the sample 0
//
SampleCount++;
if( SampleCount == ADC_BUF_LEN )
{
SampleCount = 0;
}复制代码
他的做法就是每次进中段把数据推进数组。然后把数组整体显示。
如果要同时看x,y对时间的数据。好像是能看x对时间和y对时间的分开来的两张图。
详情回复
发表于 2015-10-21 16:00