We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To Reproduce Steps to reproduce the behavior:
private int initDataOffsets[]= { 0x0710, // device name 0x0711, // device name 0x0712, // device name 0x0780, // loads count 0x1200, // phases num };
BatchRead<Integer> batch = new BatchRead<Integer>(); for (int i= 0; i < initDataOffsets.length; i++) { batch.addLocator(i, new ModbusLocator(16, RegisterRange.HOLDING_REGISTER, initDataOffsets[i], DataType.TWO_BYTE_INT_UNSIGNED, (byte) 0)); }
BatchResults<Integer> res= batchRead(master, batch);
Expected behavior List<ReadFunctionGroup<K>> functionGroups must be 3 here. But has 2.
List<ReadFunctionGroup<K>> functionGroups
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To Reproduce
Steps to reproduce the behavior:
Expected behavior
List<ReadFunctionGroup<K>> functionGroups
must be 3 here. But has 2.The text was updated successfully, but these errors were encountered: