modbus-core
modbus-core copied to clipboard
A pure no-std Rust modbus library
I'm using `modbus-core` to parse requests/responses in order to display in a more user friendly way in this [tool](https://github.com/pythcoiner/modbus485_debugger), i just notice i got this parsing issue:   i...
Is there a reason the codec module isn't being exported? Right now, the encoding trait isn't available.
fixes #1
This check were not done at some places, this PR add it where it is missing.
I believe there is an issue in src/codec/rtu/mod.rs in fn request_pdu_len. You may want to check the Modbus application protocol spec, sections 6.11 and 6.12, to make sure. IMHO, the...
PR to fix the request PDU length calculation mentioned in https://github.com/slowtec/modbus-core/issues/12. My application doesn't use coils but I've attempted to implement the fix for FC 0x0F as well. I have...