forked from M-Labs/artiq
artiq_flash: RTM is a regular DRTIO satellite, can be used with all variants
This commit is contained in:
parent
883310d83e
commit
bcd061f141
|
@ -421,13 +421,13 @@ def main():
|
||||||
programmer.write_binary(*config["rtm_gateware"],
|
programmer.write_binary(*config["rtm_gateware"],
|
||||||
rtm_gateware_bin)
|
rtm_gateware_bin)
|
||||||
elif action == "rtm_gateware":
|
elif action == "rtm_gateware":
|
||||||
if args.target == "sayma" and variant != "simplesatellite" and variant != "master":
|
if args.target == "sayma":
|
||||||
rtm_gateware_bin = convert_gateware(
|
rtm_gateware_bin = convert_gateware(
|
||||||
artifact_path(rtm_variant_dir, "gateware", "top.bit"), header=True)
|
artifact_path(rtm_variant_dir, "gateware", "top.bit"), header=True)
|
||||||
programmer.write_binary(*config["rtm_gateware"],
|
programmer.write_binary(*config["rtm_gateware"],
|
||||||
rtm_gateware_bin)
|
rtm_gateware_bin)
|
||||||
else:
|
else:
|
||||||
raise ValueError("No RTM board for this board and variant.")
|
raise ValueError("No RTM for this board")
|
||||||
elif action == "bootloader":
|
elif action == "bootloader":
|
||||||
bootloader_bin = artifact_path(variant_dir, "software", "bootloader", "bootloader.bin")
|
bootloader_bin = artifact_path(variant_dir, "software", "bootloader", "bootloader.bin")
|
||||||
programmer.write_binary(*config["bootloader"], bootloader_bin)
|
programmer.write_binary(*config["bootloader"], bootloader_bin)
|
||||||
|
|
Loading…
Reference in New Issue