From 3a0102c73604ccea43bc68ae2a154ef837e7cfd4 Mon Sep 17 00:00:00 2001 From: "zhen.guo" Date: Fri, 28 Oct 2022 15:18:15 +0800 Subject: [PATCH] =?UTF-8?q?EC200AEUHAR01A06V03M16=5FOCPU=5FQPY=20&EC200AAU?= =?UTF-8?q?HAR01A03V03M16=5FOCPU=5FQPY:=20=E5=8D=95=E5=8F=8C=E5=A4=A9?= =?UTF-8?q?=E7=BA=BF=E4=BF=AE=E6=94=B9=E4=B8=BA=E5=88=86=E9=9B=86=E5=A4=A9?= =?UTF-8?q?=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- en-us/api/QuecPythonClasslib.md | 8 ++++---- zh-cn/api/QuecPythonClasslib.md | 14 ++++++++------ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/en-us/api/QuecPythonClasslib.md b/en-us/api/QuecPythonClasslib.md index 4c7a17b..c16dcb0 100644 --- a/en-us/api/QuecPythonClasslib.md +++ b/en-us/api/QuecPythonClasslib.md @@ -5199,11 +5199,11 @@ USBNET.open() -##### single and dual antenna configuration and query API +##### Diversity antenna configuration API > **misc.antennaSecRXOffCtrl(\*args)** -single and dual antenna configuration and query API(just supported on the 1803s platform) +Diversity antenna configuration and query API(just supported on the 1803s platform) * parameter @@ -5211,9 +5211,9 @@ single and dual antenna configuration and query API(just supported on the 1803s The number of parameters is 0(query):misc.antennaSecRXOffCtrl() The number of parameters is 1(set):misc.antennaSecRXOffCtrl(SecRXOff_set) - | Parameter | Type | Description | + | Parameter | Type | Description | | -------- | -------- | ----------------------------------------------------- | - | SecRXOff_set | int | range:0/1, 0:forceSecRXOffDisable 1:forceSecRXOffEnable | + | SecRXOff_set | int | range:0/1, 0:The diversity antenna is not turned off 1:Turn off the diversity antenna | * Return Value diff --git a/zh-cn/api/QuecPythonClasslib.md b/zh-cn/api/QuecPythonClasslib.md index d2b24b5..1290cc2 100644 --- a/zh-cn/api/QuecPythonClasslib.md +++ b/zh-cn/api/QuecPythonClasslib.md @@ -5744,25 +5744,27 @@ USBNET.open() -##### 单双天线配置接口 +##### 分集天线配置接口 > **misc.antennaSecRXOffCtrl(\*args)** -单双天线配置、查询接口。(仅1803S平台支持该接口) +分集天线配置、查询接口。(仅1803S平台支持该接口) * 参数 该接口为可变参形式: - 参数个数为0,表示获取单双天线配置:misc.antennaSecRXOffCtrl() - 参数个数为1,表示设置单双天线:misc.antennaSecRXOffCtrl(SecRXOff_set) + 参数个数为0,查询:misc.antennaSecRXOffCtrl() + 参数个数为1,配置:misc.antennaSecRXOffCtrl(SecRXOff_set) | 参数 | 参数类型 | 参数说明 | | ------ | -------- | ----------------------------------------------------- | - | SecRXOff_set | int | 范围0/1, 0:forceSecRXOffDisable 1:forceSecRXOffEnable | + | SecRXOff_set | int | 范围0/1, 0:不关闭分集天线 1:关闭分集天线 | * 返回值 - 失败返回整型值-1,成功返回整形0 + 查询:成功返回分集天线配置,失败返回整形值-1 + + 设置:成功返回整形0,失败返回整型值-1 * 示例