STAPL - 2023.1 日本語 - UG1553

Vitis 統合 IDE およびコマンド ライン リファレンス マニュアル (UG1553)

Document ID
UG1553
Release Date
2023-07-17
Version
2023.1 日本語
次は、コマンドの後に、そのオプション (ある場合のみ) と、そのオプションの Python メソッド (ある場合のみ) を示しています。

stapl config

-out <filepath>
st = self.session.stapl()
st.config(out="tests/data/pystapl.stapl", scan_chain=[{'name': 'xcvc1902'}, {'name': 'xcvm1802'}])
-handle <filehandle>
st = self.session.stapl()
handle = open("tests/data/pystapl.stapl", "w+b")
st.config(handle=handle, part=['xcvc1902', 'xcvm1802'])
-scan-chain <list-of-dicts>
st = self.session.stapl()
st.config(out="tests/data/pystapl.stapl", scan_chain=[{'name': 'xcvc1902'}, {'name': 'xcvm1802'}])
DONE
-part <device-name list>
st = self.session.stapl()
handle = open("tests/data/pystapl.stapl", "w+b")
st.config(handle=handle, part=['xcvc1902', 'xcvm1802'])

stapl start

st.start()

stapl stop

st.stop()