We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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