]> git.sur5r.net Git - openocd/blobdiff - src/target/trace.h
- renamed M5960 USB JTAG to "flyswatter"
[openocd] / src / target / trace.h
index ec4a4c38fc2df035feb1c1a55c44b06442a9b0af..7267cd38b92f7e6bfbb3c6167715072616a65a74 100644 (file)
 
 #include "target.h"
 
+typedef struct trace_point_s
+{
+       u32 address;
+       u64 hit_counter;
+} trace_point_t;
+
+typedef struct trace_s
+{
+       int num_trace_points;
+       trace_point_t *trace_points;
+       int trace_history_size;
+       u32 *trace_history;
+} trace_t;
+
 typedef enum trace_status
 {
        TRACE_IDLE = 0x0,