| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "title": "基于TCP连接的IFSF协议的 稳牌-WT30 或 恒山-TH22 加油机配置",
- "type": "object",
- "format": "grid",
- "properties": {
- "Hint_EnablePumpToOnlineMode": {
- "title": "应先开启加油机为在线模式",
- "type": "string",
- "default": "油机遥控器设置选项: Main Menu – Management – Delivery Mode – 设置为Connected",
- "readOnly": true,
- "options": {
- "grid_columns": 12
- }
- },
- "FccIfsfSubnetValue": {
- "title": "中控IFSF子网值",
- "type": "integer",
- "default": 2,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "FCC Ifsf Subnet,此值应与油机端配置中的相应值一致,即图中的Subnet Addr值,且与油机的Subnet Address值区分",
- "grid_columns": 3
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsf_configUI_set_fcc_subnet.png",
- "mediaType": "image"
- }
- ]
- },
- "FccIfsfNodeValue": {
- "title": "中控IFSF节点",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "FCC Ifsf Node,此值应与油机端配置中的相应值一致,即图中的Node Addr值",
- "grid_columns": 3
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsf_configUI_set_fcc_node.png",
- "mediaType": "image"
- }
- ]
- },
- "PumpIfsfSubnetValue": {
- "title": "油机IFSF子网",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "Pump Ifsf Subnet,一般油机出厂即默认此值为1,一般无需更改,请与FCC的Subnet值区分",
- "grid_columns": 3
- }
- },
- "PumpIfsfNodeValue": {
- "title": "油机IFSF子网",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "Pump Ifsf Node,每一通讯链路中的各台油机需此值各异, 油机遥控器设置选项: Main Menu –> Configuration –> Communication –> Comm Board – Node Address ",
- "grid_columns": 3
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsf_configUI_set_pump_node.png",
- "mediaType": "image"
- }
- ]
- },
- "PumpConfigurations": {
- "title": "所有加油点",
- "type": "array",
- "format": "grid",
- "uniqueItems": true,
- "items": {
- "type": "object",
- "title": "加油点",
- "format": "grid",
- "required": [ "PumpId", "PhysicalId", "NozzleConfigurations" ],
- "properties": {
- "PumpId": {
- "title": "加油点号(Ifsf Fdc PumpId)",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 255,
- "options": {
- "infoText": "",
- "grid_columns": 6
- }
- },
- "PhysicalId": {
- "title": "加油点IFSF物理地址",
- "type": "integer",
- "enum": [ 33, 34, 35, 36 ],
- "options": {
- "enum_titles": [ "0x21", "0x22", "0x23", "0x24" ],
- "grid_columns": 6
- },
- "links": [
- {
- "href": "/image/ProcessorMetaDescriptor/tqcIfsfPumpBoard_pump_nozzle_id.png",
- "mediaType": "image"
- }
- ]
- },
- "NozzleConfigurations": {
- "type": "array",
- "format": "tabs",
- "title": "所有油枪",
- "uniqueItems": true,
- "options": {
- "infoText": "",
- "grid_columns": 12
- },
- "items": {
- "type": "object",
- "title": "油枪",
- "required": [ "LogicalId", "PhysicalId" ],
- "format": "grid",
- "properties": {
- "LogicalId": {
- "title": "油枪逻辑号(Ifsf Fdc LogicalNozzle Id)",
- "type": "integer",
- "default": 1,
- "minimum": 1,
- "maximum": 8
- },
- "PhysicalId": {
- "title": "油枪IFSF物理地址",
- "type": "integer",
- "enum": [ 17, 18, 19, 20, 21, 22, 23, 24 ],
- "options": {
- "enum_titles": [ "0x11", "0x12", "0x13", "0x14", "0x15", "0x16", "0x17", "0x18" ]
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
|