litescope/examples/test/test_identifier.py

21 lines
270 B
Python
Raw Normal View History

#!/usr/bin/env python3
2018-09-23 04:36:19 -04:00
from litex import RemoteClient
wb = RemoteClient()
wb.open()
# # #
fpga_id = ""
for i in range(256):
c = chr(wb.read(wb.bases.identifier_mem + 4*i) & 0xff)
fpga_id += c
if c == "\0":
break
print(fpga_id)
# # #
wb.close()