]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/graph.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
18 int GraphBuffer
[MAX_GRAPH_TRACE_LEN
];
21 int s_Buff
[MAX_GRAPH_TRACE_LEN
];
24 /* write a bit to the graph */
25 void AppendGraph(int redraw
, int clock
, int bit
)
29 for (i
= 0; i
< (int)(clock
/ 2); ++i
)
30 GraphBuffer
[GraphTraceLen
++] = bit
^ 1;
32 for (i
= (int)(clock
/ 2); i
< clock
; ++i
)
33 GraphBuffer
[GraphTraceLen
++] = bit
;
39 // clear out our graph window
40 int ClearGraph(int redraw
)
42 int gtl
= GraphTraceLen
;
43 memset(GraphBuffer
, 0x00, GraphTraceLen
);
53 // DETECT CLOCK NOW IN LFDEMOD.C
55 void setGraphBuf(uint8_t *buff
, size_t size
)
57 if ( buff
== NULL
) return;
60 if ( size
> MAX_GRAPH_TRACE_LEN
)
61 size
= MAX_GRAPH_TRACE_LEN
;
63 for (; i
< size
; ++i
){
64 GraphBuffer
[i
]=buff
[i
]-128;
70 size_t getFromGraphBuf(uint8_t *buff
)
72 if ( buff
== NULL
) return 0;
75 for (i
=0;i
<GraphTraceLen
;++i
){
76 if (GraphBuffer
[i
]>127) GraphBuffer
[i
]=127; //trim
77 if (GraphBuffer
[i
]<-127) GraphBuffer
[i
]=-127; //trim
78 buff
[i
]=(uint8_t)(GraphBuffer
[i
]+128);
84 // Get or auto-detect clock rate
85 int GetClock(const char *str
, int peak
, int verbose
)
88 sscanf(str
, "%i", &clock
);
95 uint8_t grph
[MAX_GRAPH_TRACE_LEN
]={0};
96 size_t size
= getFromGraphBuf(grph
);
98 PrintAndLog("Failed to copy from graphbuffer");
101 clock
= DetectASKClock(grph
,size
,0);
102 // Only print this message if we're not looping something
104 PrintAndLog("Auto-detected clock rate: %d", clock
);
110 // A simple test to see if there is any data inside Graphbuffer.
113 if ( GraphTraceLen
<= 0) {
114 PrintAndLog("No data available, try reading something first");
120 // Detect high and lows in Grapbuffer.
121 // Only loops the first 256 values.
122 void DetectHighLowInGraph(int *high
, int *low
, bool addFuzz
) {
124 uint8_t loopMax
= 255;
125 if ( loopMax
> GraphTraceLen
)
126 loopMax
= GraphTraceLen
;
128 for (uint8_t i
= 0; i
< loopMax
; ++i
) {
129 if (GraphBuffer
[i
] > *high
)
130 *high
= GraphBuffer
[i
];
131 else if (GraphBuffer
[i
] < *low
)
132 *low
= GraphBuffer
[i
];
135 //12% fuzz in case highs and lows aren't clipped
137 *high
= (int)(*high
* .88);
138 *low
= (int)(*low
* .88);
142 int GetNRZpskClock(const char *str
, int peak
, int verbose
)
145 sscanf(str
, "%i", &clock
);
146 if (!strcmp(str
, ""))
152 uint8_t grph
[MAX_GRAPH_TRACE_LEN
]={0};
153 size_t size
= getFromGraphBuf(grph
);
155 PrintAndLog("Failed to copy from graphbuffer");
158 clock
= DetectpskNRZClock(grph
,size
,0);
159 // Only print this message if we're not looping something
161 PrintAndLog("Auto-detected clock rate: %d", clock
);