forked from M-Labs/artiq
doc: add artiq_flash
This commit is contained in:
parent
8674875007
commit
cf17be92e3
|
@ -10,7 +10,7 @@ import artiq
|
|||
from artiq.frontend.bit2bin import bit2bin
|
||||
|
||||
|
||||
def main():
|
||||
def get_argparser():
|
||||
parser = argparse.ArgumentParser(
|
||||
formatter_class=argparse.RawDescriptionHelpFormatter,
|
||||
description="ARTIQ flashing/deployment tool",
|
||||
|
@ -43,6 +43,11 @@ Prerequisites:
|
|||
parser.add_argument("ACTION", nargs="*",
|
||||
default="proxy bitstream bios runtime start".split(),
|
||||
help="actions to perform, default: %(default)s")
|
||||
return parser
|
||||
|
||||
|
||||
def main():
|
||||
parser = get_argparser()
|
||||
opts = parser.parse_args()
|
||||
|
||||
config = {
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
Utilities
|
||||
=========
|
||||
|
||||
.. Sort these tool by some subjective combination of their
|
||||
typical sequence and expected frequency of use.
|
||||
|
||||
|
||||
Local running tool
|
||||
------------------
|
||||
|
||||
|
@ -93,6 +97,13 @@ This tool compiles key/value pairs into a binary image suitable for flashing int
|
|||
:ref: artiq.frontend.artiq_mkfs.get_argparser
|
||||
:prog: artiq_mkfs
|
||||
|
||||
Flashing/Loading tool
|
||||
---------------------
|
||||
|
||||
.. argparse::
|
||||
:ref: artiq.frontend.artiq_flash.get_argparser
|
||||
:prog: artiq_flash
|
||||
|
||||
.. _core-device-configuration-tool:
|
||||
|
||||
Core device configuration tool
|
||||
|
|
Loading…
Reference in New Issue