SignalTraceTable
report_signaltracetable TPTReport.SignalTraceTable([signal[] signals])
This function generates a signal trace table object. The function
report_signaltracetable.add()
can be used to add the signals into the table.
Parameters:
[signals] (optional) Optional list of signals that should be part of the trace table initially. This parameter is optional. If omitted no signals will be added to the table initially.
Returns:
the signal trace table that can be added to report
Examples:
# generate signal table with signals headlight and light_switch sigtab = TPTReport.SignalTraceTable(); TPTReport.add(sigtab); sigtab.add([headlight, light_switch]);