Hi,
I have a memory consuming application running on a Panda II.
Whenever I need to read from flash memory I have to allocate 4096 bytes:
byte[] buffer = new byte[InternalFlashStorage.Size];
Assuming I’m only using the first 100 bytes, is it possible to read/write only this segment ?
I’m getting a lot arbitrary “Out of Memory” exceptions when using the whole 4096 byte area.
Thanks