forked from M-Labs/nix-scripts
Astro
eab83a6a3f
artiq-fast: add nativeBuildInputs to artiq-board-legacy.nix artiq-board: fix scope of toPythonModule artiq-board: use new --gateware-identifier-str artiq-board: use legacy code for artiq<6 artiq-board: get/remove/re-add version identifiers artiq-fast: build gateware from a self-contained separate source derivation Addresses item 2. of Gitea issue #1. Co-authored-by: Stephan Maka <stephan@spaceboyz.net> Reviewed-on: M-Labs/nix-scripts#23
25 lines
609 B
Python
Executable File
25 lines
609 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Encodes data like ARTIQ build_soc.py ReprogrammableIdentifier
|
|
|
|
import sys
|
|
|
|
if len(sys.argv) != 2:
|
|
raise ValueError('argument missing')
|
|
|
|
identifier_str = sys.argv[1]
|
|
contents = list(identifier_str.encode())
|
|
l = len(contents)
|
|
if l > 255:
|
|
raise ValueError("Identifier string must be 255 characters or less")
|
|
contents.insert(0, l)
|
|
|
|
f = sys.stdout
|
|
f.write("[\n");
|
|
for i in range(7):
|
|
init = sum(1 << j if c & (1 << i) else 0 for j, c in enumerate(contents))
|
|
f.write(
|
|
' {{ cell = "identifier_str{}"; init = "256\'h{:X}"; }}\n'.format(i, init)
|
|
)
|
|
f.write("]\n");
|