lda_controller: add description

This commit is contained in:
Sebastien Bourdeauducq 2015-02-15 17:32:08 -07:00
parent a3494c57cc
commit 17611e9899
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ from artiq.tools import verbosity_args, simple_network_args, init_logger
def get_argparser(): def get_argparser():
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser(
description="ARTIQ controller for the Lab Brick Digital Attenuator")
parser.add_argument("-d", "--device", default="LDA-102", parser.add_argument("-d", "--device", default="LDA-102",
choices=["LDA-102", "LDA-602", "sim"]) choices=["LDA-102", "LDA-602", "sim"])
simple_network_args(parser, 3253) simple_network_args(parser, 3253)