Files
CCU621M/app/plat_comm/ieszt/README.md
T

44 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ieszt — 积成 IES 运营平台协议
规约依据:积成充电桩网络通信协议(V3.5 / V3.7 / V3.8,由 `BS_IES_TYPE` 选择)
## 编译开关
`public_define.h` 中设置:
```c
#define BS_IES_EN (1) // 使能积成 IES 运营协议(CCU621 默认)
```
协议版本在 `bs_ies_ctrl.h` 中配置:
```c
#define BS_IES_TYPE (2) // 1=山高3.82=积成3.7(默认),3=积成3.5
```
可与 `BS_IESYW_EN` 并存:平台 A 走 IES 运营(本目录),平台 B 走远程运维(`iesyw/`),共用 4G 模组 socketA/B 分发。
## 文件
| 文件 | 说明 |
| --- | --- |
| `bs_ies_ctrl.c/h` | 任务回调、登录/心跳、周期上送调度、接收解帧 |
| `bs_ies_interface.c/h` | 帧格式(0x68 起始)、帧类型码、组包/解包 |
## 主要帧类型
| 类型 | 说明 |
| --- | --- |
| 0x01/0x02 | 登录/应答 |
| 0x03/0x04 | 心跳/应答 |
| 0x05/0x06 | 计费模型请求/应答 |
| 0x07~0x0A | 二维码下发/召唤 |
| 0x11/0x13 | 充电中/非充电实时数据 |
| 0x15 | 故障告警 |
| 0x31 | 表底值上送 |
| 0x41~0x48 | 启停/账单结算 |
| 0x76 | 对时 |
| 0x7D/0x7E | 费率相关 |
详细说明见 [plat_comm模块说明.md](../plat_comm模块说明.md)。