CfgProbes#
- class pyedb.configuration.cfg_ports_sources.CfgProbes(pedb=None, data=None)#
Collect configured probe entries.
Overview#
Import detail#
from pyedb.configuration.cfg_ports_sources import CfgProbes
Attribute detail#
- CfgProbes.probes#
Method detail#
- CfgProbes.add(name: str, positive_terminal: dict, negative_terminal: dict, reference_designator=None)#
Add a voltage probe to this configuration.
- Parameters:
- Returns:
CfgProbeThe newly created probe object.
Examples
>>> cfg.probes.add( ... "probe1", ... positive_terminal=TerminalInfo.net("DDR4_DQ0"), ... negative_terminal=TerminalInfo.net("GND"), ... )
- CfgProbes.apply()#
Write all configured probes into the open EDB design.
- CfgProbes.to_list()#
Serialize all probes.