Commit 799f1c002c606a73849992bb7adddcf94512f08b
1 parent
0535445c
增加fEvtRtAllowEdited事件
Showing
1 changed file
with
23 additions
and
1 deletions
通讯协议-B200W-MQTT协议[内部].md
@@ -126,7 +126,7 @@ | @@ -126,7 +126,7 @@ | ||
126 | |标准测验|启动标准测验|[startKpExam](#startkpexam)|[fEvtStartKpExam](#fevtstartkpexam)<br>[fEvtKpExam](#fevtkpexam)<br>[fEvtFinalSubmit](#fevtfinalsubmit)| | 126 | |标准测验|启动标准测验|[startKpExam](#startkpexam)|[fEvtStartKpExam](#fevtstartkpexam)<br>[fEvtKpExam](#fevtkpexam)<br>[fEvtFinalSubmit](#fevtfinalsubmit)| |
127 | ||停止标准测验|[stopKpExam](#stopkpexam)|[fEvtStopKpExam](#fevtstopkpexam)| | 127 | ||停止标准测验|[stopKpExam](#stopkpexam)|[fEvtStopKpExam](#fevtstopkpexam)| |
128 | ||刷新作答数据|[rtGetKpExamData](#rtgetkpexamdata)|[fEvtKpExam](#fevtkpexam)| | 128 | ||刷新作答数据|[rtGetKpExamData](#rtgetkpexamdata)|[fEvtKpExam](#fevtkpexam)| |
129 | -||允许键盘提交后退回修改|[rtAllowEdited](#rtkpallowedited)|[fEvtAllowEdited](#fevtallowedited)| | 129 | +||允许键盘提交后退回修改|[rtAllowEdited](#rtkpallowedited)|[fEvtRtAllowEdited](#fevtrtallowedited)<br>[fEvtAllowEdited](#fevtallowedited)| |
130 | 130 | ||
131 | ## 公共事件 | 131 | ## 公共事件 |
132 | ### sEvtBsConnectState | 132 | ### sEvtBsConnectState |
@@ -2687,6 +2687,28 @@ | @@ -2687,6 +2687,28 @@ | ||
2687 | } | 2687 | } |
2688 | ``` | 2688 | ``` |
2689 | 2689 | ||
2690 | +##### fEvtRtAllowEdited | ||
2691 | +- **主题**:/basestation/\${baseSN}/receive | ||
2692 | +- **功能描述**:返回允许键盘修改答案指令接收状态 | ||
2693 | +- **参数说明** | ||
2694 | + | ||
2695 | +|参数名|类型|限制|非空|说明| | ||
2696 | +|---|---|---|---|---| | ||
2697 | +|fun|string|-|是|指令名称| | ||
2698 | +|dataTag|string|-|否|数据包标识,可为空字符串| | ||
2699 | +|data|object|-|是|传送参数的对象| | ||
2700 | +|+state|int||是|0-成功<br>1-失败| | ||
2701 | +```json | ||
2702 | +{ | ||
2703 | + "fun": "fEvtRtAllowEdited", | ||
2704 | + "dataTag":"1", | ||
2705 | + "data": { | ||
2706 | + "keySn": "1234567890", | ||
2707 | + "state":0 | ||
2708 | + } | ||
2709 | +} | ||
2710 | +``` | ||
2711 | + | ||
2690 | ##### fEvtAllowEdited | 2712 | ##### fEvtAllowEdited |
2691 | - **主题**:/basestation/\${baseSN}/receive | 2713 | - **主题**:/basestation/\${baseSN}/receive |
2692 | - **功能描述**:返回允许键盘修改答案状态 | 2714 | - **功能描述**:返回允许键盘修改答案状态 |