Hi hi!
I am attempting to test the limits of the Modbus protocol and I can see that I am able to create a maximum of 256 ModbusSlaveContexts within a store/server contexts. Is there a way to overcome this limit?
On the client end: client.write_registers(address, payload, skip_encode = True, unit = 256) throws an error because the write_registers API takes in a short unsigned int which can only handle values in the range [0, 255]. Can I create multiple server contexts or more slave contexts somehow?
Cheers,
Oyonika