N |
NG |
Hi!
I have made an HLA that takes as input an SPI analyzer. My HLA parses and displays high-level SPI messages. The first byte is the "message ID", and the following bytes are the "message payload", that are interpreted according to the message ID. For example:
Each one of these messages has a different interpretation and even a different types, or number of items. I can create a column in the viewer for each payload, "FW version", "Device name", "Current time", but it is not practical (I have described 4 messages as an example, but I have hundreds of messages).
What I was thinking that would be great is for my HLA to return a JSON (or other generic format) and the Logic software to be able to nicely interpret that JSON. There would be only one column "Payload", that
It is important that the user sees the name of the contents ("Last reset time" and "Last charge time") and not only the contents so the user does not have to guess what is the meaning of each field.
I think this solution would be very general and useful.
When I say "the Logic software to be able to nicely interpret a JSON", I am thinking of JSON data formatted as a table or something nice to see (like the following website: https://jsongrid.com/json-viewer); when I hover over the data with the mouse pointer.
Greetings!