Hi: I am trying to read from flash memory on my controller(LPC1248) and having problem,. I can erase it, write to it. but having problem to reading it. I am doing this with sector 22(memory location 0x00078000). any leads; or code sample. Thank you Al
iptr = (int *) 0x78000; for (j=0; j<(256/4); j++) { data[j] = *iptr++; }
Thank you very much. Al