説明
名前でクロックの設定を取得します。
構文
get_settings(<name>)
戻り値
クロック設定のディクショナリ。
パラメーター
| 名前 | 説明 |
|---|---|
| <name> | クロック名。 |
例
# Get the settings of an existing clock
proj = open_project('my_design.pdm')
clock_handler = proj.get_clock_handler()
settings = clock_handler.get_settings('clk1')
# settings == {'freq': 500.0, 'io_type': 'HD', 'io_standard': 'LVCMOS 1.8V',
# 'is_gated': True, 'min_scaled_freq': 50.0}