Browse Source

Merge branch 'John-Titor-lpc11xx-flash'

pull/54/head
Gareth McMullin 10 years ago
parent
commit
936b7460e0
  1. 28
      src/lpc11xx.c

28
src/lpc11xx.c

@ -260,26 +260,26 @@ lpc11xx_flash_write(struct target_s *target, uint32_t dest, const uint8_t *src,
copylen = len;
memcpy(&flash_pgm.data[chunk_offset], src, copylen);
/* update to suit */
len -= copylen;
src += copylen;
chunk_offset = 0;
/* if we are programming the vectors, calculate the magic number */
if (chunk == 0) {
if ((chunk == 0) && (chunk_offset == 0)) {
if (copylen < 32) {
/* we have to be programming at least the first 8 vectors... */
return -1;
}
uint32_t *w = (uint32_t *)(&flash_pgm.data[0]);
uint32_t sum = 0;
if (copylen >= 7) {
for (unsigned i = 0; i < 7; i++)
sum += w[i];
w[7] = 0 - sum;
} else {
/* We can't possibly calculate the magic number */
return -1;
}
for (unsigned i = 0; i < 7; i++)
sum += w[i];
w[7] = ~sum + 1;
}
/* update to suit */
len -= copylen;
src += copylen;
chunk_offset = 0;
} else {
/* interior chunk, must be aligned and full-sized */

Loading…
Cancel
Save