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

Real time agent for cortex m3

i couldn't find any application example in the installation directory of keil on using Real time agent with RTX kernel for STM32(cortex m3) processor.
i found the examples based on LPCxxx ARM7 processor in the installation directory, but that couldn't help me.
could anybody please tell me how to use Real time agent with RTX kernel for cortex m3 devices.

Parents
  • Hi,

    for Cortex-M please see CMSIS, core_cm3.h,

    static __INLINE uint32_t ITM_SendChar (uint32_t ch);
    static __INLINE int32_t ITM_ReceiveChar (void);
    static __INLINE int32_t ITM_CheckChar (void);
    

    You can use the ITM printf window as a Terminal window when in debug mode. Trace (i.e. on ULINK2: SWO, UART Mode) and ITM Ch. 0 must be enabled.

    .
    BR,
    /th.

Reply
  • Hi,

    for Cortex-M please see CMSIS, core_cm3.h,

    static __INLINE uint32_t ITM_SendChar (uint32_t ch);
    static __INLINE int32_t ITM_ReceiveChar (void);
    static __INLINE int32_t ITM_CheckChar (void);
    

    You can use the ITM printf window as a Terminal window when in debug mode. Trace (i.e. on ULINK2: SWO, UART Mode) and ITM Ch. 0 must be enabled.

    .
    BR,
    /th.

Children
No data