This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

28335 Load Program Error

How do I program the application without erasing Sector A?

The reason I don't want to erase Sector A is because this is where my boot code resides.

I am getting a "Load Program Error " if I try to program my application without first erasing Sector A. However, if I erase all of memory first (including Sector A) I can then re-program the board without erasing Sector A.

  • Richard,

    I assume your bootcode and your main app are two separate projects, right? If bootcode is linked to sector A, then do NOT link anything in the main app to sector A. Rebuild the main app. Then, when you program the main app, uncheck the sector A box in the flash programmer in CCS, as you showed in your post.

    Regards,
    David
  • David, thank you for the prompt response.

    I was inadvertently using sector A in the main app. Once I removed everything from Sector A, the program loaded properly.

    Thank you