This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

AT91SAM7SE512 Code size more than 256k, How do I flash?

I am working on AT91SAM7SE512 based target board. The CPU has internal flash 512 KB. My Code size more than 256k. Keil flashing algorithm only seems to allow 256 kB. How do I flash?

Parents
  • It is written in datasheet that this microcontroller has 2 banks of 256kB each, so solution is to use AT91SAM7_256 for first bank and AT91SAM7_256_B1 for the second bank.
    You only have to add both algorithms for flash programming and first should be used for first bank and second for the second bank.

Reply
  • It is written in datasheet that this microcontroller has 2 banks of 256kB each, so solution is to use AT91SAM7_256 for first bank and AT91SAM7_256_B1 for the second bank.
    You only have to add both algorithms for flash programming and first should be used for first bank and second for the second bank.

Children