Hi,
I’m modifying/developing an HLA to display information from an I2C Analyzer in a more compact and easily readable format in the Data Display window. I’d like to change the field order, but haven’t found a way to do so:
Based on the following example from an existing HLA:
self.temp_frame = AnalyzerFrame("error", frame.start_time, frame.end_time, { "address": "error", "data": "", "count": 0 }
I tried modifying it as follows, but it didn’t have the desired effect:
self.temp_frame = AnalyzerFrame("error", frame.start_time, frame.end_time, { "device": "error", "address": "error", "data": "", "count": 0 }
That is, the data display window went from this:
to this:
I suspect (hope) this is possible, but the documentation doesn’t clearly spell out how to properly define the fields shown in the Data Display window (and how to order them)
If you could point me in the right direction it would be appreciated.
Thanks and regards,
Steve