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

Logic Analyzer setting

Hi developpers ,
Actually I meet a problem with the use of the logic analyzer in myproject ,I can't add any signal in real debug mode ( not simulation) I use the keil ulink ME probe,so I searched in many links to find a solution , but there isnt ,My card is not a dev card ,it is a cortex m3 with many peripheral around like LCD ,DSP ... .

Well my question is how to configure the project (if it is possible ) so I can use the logic analyzer

NB: I can debug of course my card see variable value ,but can't use only the logic analyzer.

Parents
  • Logic Analyzer can be used also when debugging real HW (Cortex-M) but is limited to monitoring memory locations.

    DWT unit in Cortex-M provides trace information also for memory read/write. Therefore it is possible to monitor CPU read/write to any memory location (including peripheral registers).

    ETM is not required.

    For example:
    Monitoring analog value can be achieved by defining a memory value which is updated by the A/D converter. Adding this variable to the Logic Analyzer automatically configures the chip trace resource to trace writes to the defined location.

    www.keil.com/.../ulinkpro_trace_la_window.htm

Reply
  • Logic Analyzer can be used also when debugging real HW (Cortex-M) but is limited to monitoring memory locations.

    DWT unit in Cortex-M provides trace information also for memory read/write. Therefore it is possible to monitor CPU read/write to any memory location (including peripheral registers).

    ETM is not required.

    For example:
    Monitoring analog value can be achieved by defining a memory value which is updated by the A/D converter. Adding this variable to the Logic Analyzer automatically configures the chip trace resource to trace writes to the defined location.

    www.keil.com/.../ulinkpro_trace_la_window.htm

Children