説明
IP タイプに基づいて IP ハンドラーの一意のオブジェクトを取得します。
構文
get_ip_handler(<type>)
戻り値
指定された IP タイプの PdmIpHandler オブジェクト。
パラメーター
| 名前 | 説明 |
|---|---|
| <type> | IP タイプ。 |
例
# List available IP types for the current part
proj = open_project('my_design.pdm')
# proj.ip_types == ['MRMAC', 'DDRMC', 'GTH', ...]
# Get an IP handler for a specific IP type
mrmac_handler = proj.get_ip_handler('MRMAC')
ddrmc_handler = proj.get_ip_handler('DDRMC')
gth_handler = proj.get_ip_handler('GTH')