You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To enable a postmortem analysis, add pretrigger samples for the log. Currently we only start collecting data to log once we see the enable line go high - why not add a circular buffer in front of that?
The text was updated successfully, but these errors were encountered:
I'd likely have the pretrigger buffer size forced to be a multiple of the 'scans per write' property that we already use, since that is already the chunk size of the FIFO.
Also need some form of option for trigger arming - if trigger value goes high before the pretrigger buffer is full, do we ignore until buffer full or immediately start dumping data to disk? I prefer the 'ignore until buffer full' behavior, but we might need to expose that option
If the trigger is a failure condition then you'd want pre-trigger samples even if the buffer isn't full, as some data is better than none. Unless the trigger was latched, in which case I think it would be fine to fill the buffer and then flush.
To enable a postmortem analysis, add pretrigger samples for the log. Currently we only start collecting data to log once we see the enable line go high - why not add a circular buffer in front of that?
The text was updated successfully, but these errors were encountered: