Quantcast
Channel: Seeedstudio Forum
Viewing all articles
Browse latest Browse all 6612

DSO Quad Bootloader corrupted

$
0
0
mrtaylor wrote:Which custom app did you use. Can you post it?


Just a trivial mod of my frequency response app: http://www.seeedstudio.com/forum/viewtopic.php?f=10&t=2485

I just replaced main() with these:
Code:     debugf("Saving...");
    char chksum = 0;
    _fopen_wr("flash.bin");
    for (int i = 0; i < 256 * 1024; i++)
    {
      _fputc(*(char*)(0x8000000 + i));
      chksum ^= *(char*)(0x8000000 + i);
    }
    _fclose();
   
    debugf("Complete: %d", (int)chksum);
    while (1);


Statistics : Posted by embedded • on Wed Nov 09, 2011 4:48 am • Replies 17 • Views 5395

Viewing all articles
Browse latest Browse all 6612

Trending Articles