plm log - 2021.2 English

Vitis Unified Software Platform Documentation: Embedded Software Development (UG1400)

Document ID
UG1400
Release Date
2021-12-15
Version
2021.2 English

Retrieve the PLM log

Syntax

plm log [options]

Retrieve the PLM log, and print it on the console, or a channel.

Options

Option Description
-handle <handle> Specify the file handle to which the data should be redirected. If no file handle is given, data is printed on stdout.
-log-mem-addr <addr> Specify the memory address from which the PLM log should be retrieved. By default, the address and log size are obtained by triggerring IPI commands to PLM. If PLM does not respond to IPI commands, default address 0xf2019000 is used. This option can be used to change default address. If either memory address or log size is specified, then the address and size are not retrieved from PLM. If only one of address or size options is specified, default value is used for the other option. See below for description about log size.
-log-size <size in bytes> Specify the log buffer size. If this option is not specified, then the default size of 1024 bytes is used, only when the log memory information cannot be retrieved from PLM.

Returns

Nothing, if successful. Error, otherwise.

Example(s)

set fp [open test.log r]

plm log -handle $fp

Retrieve PLM debug log and write it to test.log.