mirror of https://github.com/m-labs/artiq.git
31 lines
933 B
Python
Executable File
31 lines
933 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
|
|
from artiq.devices.lda.driver import Lda, Ldasim
|
|
from artiq.management.pc_rpc import simple_server_loop
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('-d', '--device', default="LDA-102",
|
|
choices=["LDA-102", "LDA-602", "sim"])
|
|
parser.add_argument('--bind', default="::1",
|
|
help="hostname or IP address to bind to")
|
|
parser.add_argument('-p', '--port', default=8890, type=int,
|
|
help="TCP port to listen to")
|
|
parser.add_argument('-s', '--serial', default=None,
|
|
help="USB serial number of the device")
|
|
args = parser.parse_args()
|
|
|
|
if args.device == "sim":
|
|
lda = Ldasim()
|
|
else:
|
|
lda = Lda(args.serial, args.device)
|
|
|
|
simple_server_loop(lda, "lda",
|
|
args.bind, args.port)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|