My Project
 All Classes Files Functions Variables Macros
My Project Documentation

TRACE32 LOGGER command.

Usage

Usage: Add a single instruction fetch, e.g. function entry into the LOGGER.

* ...
* T32_LoggerData(T32_FETCH, &function, 0);
*

Usage: Add a variable with value into the LOGGER, e.g. nCounter and nFlag.

* ...
* long nCounter;
* char nFlag;
* nCounter = 0x11223344;
* T32_LoggerData(T32_DATA_WRITE|T32_LONG, &nCounter, nCounter);
* nFlag = 5;
*