From e8bd99048ed8df389d2c71ffbc65d3f3bb84b08e Mon Sep 17 00:00:00 2001 From: occheung Date: Wed, 2 Oct 2024 11:40:30 +0800 Subject: [PATCH] coremgmt frontend: fix arg name --- artiq/frontend/aqctl_corelog.py | 6 +++--- artiq/frontend/artiq_coremgmt.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/artiq/frontend/aqctl_corelog.py b/artiq/frontend/aqctl_corelog.py index d2dd33a4a..49f5b2565 100755 --- a/artiq/frontend/aqctl_corelog.py +++ b/artiq/frontend/aqctl_corelog.py @@ -25,9 +25,9 @@ def get_argparser(): help="Simulation - does not connect to device") parser.add_argument("core_addr", metavar="CORE_ADDR", help="hostname or IP address of the core device") - parser.add_argument("-s", "--satellite", default=0, - metavar="DRTIO_ID", type=int, - help="the logged DRTIO destination") + parser.add_argument("-s", "--drtio-dest", default=0, + metavar="DRTIO_DEST", type=int, + help="specifies the DRTIO destination") return parser diff --git a/artiq/frontend/artiq_coremgmt.py b/artiq/frontend/artiq_coremgmt.py index c1b56d2a8..e5ccd7215 100755 --- a/artiq/frontend/artiq_coremgmt.py +++ b/artiq/frontend/artiq_coremgmt.py @@ -118,8 +118,8 @@ def get_argparser(): help="show heap layout") # manage target - p_drtio_dest = parser.add_argument("-s", "--satellite", default=0, - metavar="DRTIO ID", type=int, + p_drtio_dest = parser.add_argument("-s", "--drtio-dest", default=0, + metavar="DRTIO_DEST", type=int, help="specify DRTIO destination that " "receives this command")