Forum Discussion
Altera_Forum
Honored Contributor
15 years agoYou could have a cache problem. The CPU could be reading its data cache instead of the buffer in memory.
Try to create a second pointer:alt_u8 *uncached_buffer = alt_remap_uncached(buffer,DEPTH);and when you print the contents of the buffer, read the data with uncached_buffer[x], and see if you have different results.