Hi All :
first question :
This is my program about EDMA3. I want to input the data in the bufExt1 and output bufExt2. When I see the bufExt2 memory, I don't see bufExt2 have the data. Why I can't input the data int the bufExt2?
(program)
for(y=0;y<100;y++){
bufExt1[j]=1;//frameBuffTable[CaptureF]->frame.pFrm.y[j];
j++;
}
test_422to420_conversion( hEdma, bufExt1, bufExt2 ); // This function is about EDMA set and transfer the data to bufRxt2
second question is :
I see the test_422to420_conversion(). I find that use the "BCACHE_wb()" function. What's this function mean?Is this function affect the input data?
best regards
Jerry