12 lines
370 B
Python
12 lines
370 B
Python
|
def main(wb):
|
||
|
wb.open()
|
||
|
regs = wb.regs
|
||
|
# # #
|
||
|
for i in range(64):
|
||
|
wb.regs.leds_out.write(i)
|
||
|
print("sysid : 0x{:04x}".format(regs.identifier_sysid.read()))
|
||
|
print("revision : 0x{:04x}".format(regs.identifier_revision.read()))
|
||
|
print("frequency : {}MHz".format(int(regs.identifier_frequency.read()/1000000)))
|
||
|
# # #
|
||
|
wb.close()
|