Hi, I am trying to create a project for MCB2300 that supports FLASH download and Erase.
Is there a procedure to do this. I noticed that Blinky Program has a FLASH directory.
When I create a project from scratch there is no Flash directory in my project.
Thanks, Gary
I found that I had commented out the following lines in main.c
extern __irq void T0_IRQHandler (void); extern __irq void ADC_IRQHandler (void);
That got rid of the error I was getting.
Then I have had partial success:
I am able to download to flash.
But I am not able to erase the flash for some reason.
I notice when I download to flash it automatically erases the flash first.
My question now is how can I get the IDE menu option to erase to flash to work.
Also, I have recently bought some newer ARM boards. But I am interested in learning/exploring how to program ARM7TDMI-S ARM instruction set assembly right now.
-> I notice when I download to flash it automatically erases the flash first. My question now is how can I get the IDE menu option to erase to flash to work. <-
Sounds like you can download and debug your LPC23xx; but fails to do a separate erase. If so, your [Debug] tab configuration is correct; but [Utilities] tab configuration is not.
Hi John, Looked at the Utilities area. Can not see a difference with other projects in this pop up area. I am happy though that I can download to flash and it erases when I do that. Thanks for your help, Gary