SignalTable

report_signaltable TPTReport.SignalTable([signal[] signals])

This function generates a signal table object. The function report_signaltable.add() can be used to add the signals into the table.

Parameters:

[signals] (optional) Optional list of signals that should be part of the table initially. This parameter is optional. If omitted no signals will be added to the table initially.

Returns:

the signal table that can be added to report

Examples:

   # generate signal table with signals headlight and light_switch
   sigtab = TPTReport.SignalTable();
   TPTReport.add(sigtab);
   sigtab.add([headlight, light_switch]);