定义如下:
static char * p_ADC_STR1;
p_ADC_STR1=&ADC_STR1[0][0];
使用如下:
for(i=0;i<8;i)
{
ADC7606_ConvertedValue1=ADC7606_ConvertedValue;//读取DMA搬运到内存的值
itoa(ADC7606_ConvertedValue1,p_ADC_STR1+i*5,10);
}
错误如下:
..\..\App\app.c(109): error: #268: declaration may not appear after executable statement in block
问:我该怎样使用,才不会出现错误? |