update docs/架构设计/逻辑视图设计.md.

Signed-off-by: xujian <xujian@kylinos.cn>
This commit is contained in:
xujian 2024-01-25 08:38:01 +00:00 committed by Gitee
parent 014f5735fb
commit bea7bb6301
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 20 additions and 2 deletions

View File

@ -402,12 +402,30 @@ func handle_cmd(conn net.Conn) {
```
### EVENT数据示例
event指令格式示例
```
type Event int
const (
EVT_POC_SCAN_PROGRESS Event = iota
EVT_POC_SCAN_FINISH
)
type event_body struct {
Progress int
}
type event_msg struct {
Evt int
Ack int
ReqSn int
Body event_body
Crc int
}
```