ZantsuRocks opened a new issue, #1614:
URL: https://github.com/apache/plc4x/issues/1614
### What happened?
I think that something is not working with the TAG Creation...
I cant build a tag to read data from slave-id 2 in modbus.
I have a network with 10 slave, i need to read them in order but the string
won't build
When i remove the "{unit-id 2}" from the tag it works.
```java
//connection
plcConn =
plcDM.getConnectionManager().getConnection("modbus-rtu:tcp://127.0.0.1:502");
//FIXME: Somente para debug
// ...Doing things...
builder.addTagAddress("holding-registers", "holding-register:1[23]{unit-id:
2}");
PlcReadRequest readRequest = builder.build();
PlcReadResponse response = readRequest.execute().get();
```
the error:
```
Exception in thread "Thread-2"
org.apache.plc4x.java.api.exceptions.PlcInvalidTagException:
holding-register:1{unit-id: 2}[23] invalid
at
org.apache.plc4x.java.modbus.base.tag.ModbusTagHandler.parseTag(ModbusTagHandler.java:41)
at
org.apache.plc4x.java.spi.messages.DefaultPlcReadRequest$Builder.lambda$0(DefaultPlcReadRequest.java:122)
at
org.apache.plc4x.java.spi.messages.DefaultPlcReadRequest$Builder.lambda$2(DefaultPlcReadRequest.java:138)
at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:986)
at
org.apache.plc4x.java.spi.messages.DefaultPlcReadRequest$Builder.build(DefaultPlcReadRequest.java:138)
```
### Version
v0.12.0
### Programming Languages
- [X] plc4j
- [ ] plc4go
- [ ] plc4c
- [ ] plc4net
### Protocols
- [ ] AB-Ethernet
- [ ] ADS /AMS
- [ ] BACnet/IP
- [ ] CANopen
- [ ] DeltaV
- [ ] DF1
- [ ] EtherNet/IP
- [ ] Firmata
- [ ] KNXnet/IP
- [X] Modbus
- [ ] OPC-UA
- [ ] S7
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]