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

LPC1769 issue

Hello!

I have a board working with LPC2368 uC, I talked to some NXP representative and he told me that
LPC1769 were pin compatible.

The problem is, the board works fine with LPC2368, but when I change to LPC1769 I upload the code with success using Flash Magic, but anything works..even a simple blink LED test, the pins state go crazy.. Nothing works..

Does anybody know if I have to do some extra configuration in uVision4 to work with LPC1769?
Or another configuration in Flash Magic?

Waiting for your help!!

Parents
  • If the boot loader considers that there are no valid image in the memory, then you can check if the serial port responds to boot loader commands.

    If the boot loader thinks there is an image, then you can try to set breakpoints and see if you can debug the initial instructions potentially sending the processor into a spin.

    The good thing with many microcontrollers are that if they just have a reasonable clock signal and reasonable power, then you can do some form of debugging even if the external circuit have contains errors.

    So - have you tried to figure out yet, if the boot loader do find a valid image or not?

Reply
  • If the boot loader considers that there are no valid image in the memory, then you can check if the serial port responds to boot loader commands.

    If the boot loader thinks there is an image, then you can try to set breakpoints and see if you can debug the initial instructions potentially sending the processor into a spin.

    The good thing with many microcontrollers are that if they just have a reasonable clock signal and reasonable power, then you can do some form of debugging even if the external circuit have contains errors.

    So - have you tried to figure out yet, if the boot loader do find a valid image or not?

Children