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

ARM: LPC1114 peripherals not showing up in debug

I'm working with the demo version, so that might be the problem, but I want to ask anyway.

I've got the demo working with a ULINK2 and an LPC1114 target. Another developers' uVision4 screens (which was purchased) can show and modify his LPC1758 peripherals. It looks like most, if not all, peripherals are accessible.

When I try the same thing, the only menu items under the Peripherals/Core Peripherals menu are:
NVIC
System Control & Config
System Tick Timer

Is this because of the demo version of Keil (Ver 4.10), a limitation of the LPC11xx series, or something I have to set up yet?

Thanks.

Tom

Parents
  • The code can't override the device selection. You must select the top item in Project Workspace window and then open options and select the correct device.

    The code only affects what instructions the processor (simulated or real) will execute. But the project options affects what settings the tools will see. And the tools must know about the device to know that there are peripherials to handle.

    The tools will not bother to check what include file you may have selected in your source file.

Reply
  • The code can't override the device selection. You must select the top item in Project Workspace window and then open options and select the correct device.

    The code only affects what instructions the processor (simulated or real) will execute. But the project options affects what settings the tools will see. And the tools must know about the device to know that there are peripherials to handle.

    The tools will not bother to check what include file you may have selected in your source file.

Children