I am attempting to write a float value to a PLC with the modbus write node. The PLC will not allow me to write to individual registers when those registers are mapped to a 32-bit tag on the PLC, and throws an exception 02.
The modbus write node seems to write to registers individually using FC06, even if multiple, consecutive addresses are provided in the node configuration. I need to be able to write using FC16 so both registers are written at the same time.
Is there a way to do this that I am missing? I suppose I could have interposing 16-bit integer tags that I write to, generate a checksum, reassemble, check and copy to another tag on the PLC, but it seems roundabout for such a simple task.