Skip to content

Commit 6863e51

Browse files
committed
fix: align data types with xml schema
1 parent 5d05955 commit 6863e51

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/binding-modbus/src/modbus.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ export type ModbusDataType =
115115
| "xsd:short"
116116
| "xsd:int"
117117
| "xsd:long"
118-
| "xsd:unsignedbyte"
119-
| "xsd:unsignedshort"
120-
| "xsd:unsignedint"
121-
| "xsd:unsignedlong"
118+
| "xsd:unsignedByte"
119+
| "xsd:unsignedShort"
120+
| "xsd:unsignedInt"
121+
| "xsd:unsignedLong"
122122
| "xsd:double"
123123
| "xsd:hexBinary";

0 commit comments

Comments
 (0)