Replies: 1 comment 1 reply
-
Yep, I've thought about it before (this feature). But there are no such plans for the near future. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently the server log view shows the raw hex data transmitted or received on the port. This makes it hard to quickly spot what is going on when debugging. It would be nice to have the log view (or another view) display the decoded modbus packet in human readable format. Further improvements on this could be having it detect when a dataview addresses is involved and using it to decode the values. If you want to get really fancy clicking an address or mentioned data view item could take you there in the device memory or data view.
Implementation wise the most simple way I can think of would be a QTextBrowser+QTextDocument. Log entries can then use html with references being implemented as a link you can react to using the anchorClicked signal. Only concern could be whether that gets bogged down at some point if you have megabytes of logs.
Beta Was this translation helpful? Give feedback.
All reactions