forked from M-Labs/artiq
49 lines
1.4 KiB
Python
Executable File
49 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python3.5
|
|
|
|
import argparse
|
|
import sys
|
|
|
|
from artiq.devices.pdq2.driver import Pdq2
|
|
from artiq.protocols.pc_rpc import simple_server_loop
|
|
from artiq.tools import verbosity_args, init_logger, simple_network_args
|
|
|
|
|
|
def get_argparser():
|
|
parser = argparse.ArgumentParser(description="PDQ2 controller")
|
|
simple_network_args(parser, 3252)
|
|
parser.add_argument(
|
|
"-d", "--device", default=None,
|
|
help="serial port.")
|
|
parser.add_argument(
|
|
"--simulation", action="store_true",
|
|
help="Put the driver in simulation mode, even if --device is used.")
|
|
parser.add_argument(
|
|
"--dump", default="pdq2_dump.bin",
|
|
help="file to dump pdq2 data into, for later simulation")
|
|
verbosity_args(parser)
|
|
return parser
|
|
|
|
|
|
def main():
|
|
args = get_argparser().parse_args()
|
|
init_logger(args)
|
|
port = None
|
|
|
|
if not args.simulation and args.device is None:
|
|
print("You need to specify either --simulation or -d/--device "
|
|
"argument. Use --help for more information.")
|
|
sys.exit(1)
|
|
|
|
if args.simulation:
|
|
port = open(args.dump, "wb")
|
|
dev = Pdq2(url=args.device, dev=port)
|
|
try:
|
|
simple_server_loop({"pdq2": dev}, args.bind, args.port,
|
|
description="device=" + str(args.device))
|
|
finally:
|
|
dev.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|