]>
git.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
];
20 /* write a manchester bit to the graph */
21 void AppendGraph(int redraw
, int clock
, int bit
)
24 //set first half the clock bit (all 1's or 0's for a 0 or 1 bit)
25 for (i
= 0; i
< (int)(clock
/ 2); ++i
)
26 GraphBuffer
[GraphTraceLen
++] = bit
;
27 //set second half of the clock bit (all 0's or 1's for a 0 or 1 bit)
28 for (i
= (int)(clock
/ 2); i
< clock
; ++i
)
29 GraphBuffer
[GraphTraceLen
++] = bit
^ 1;
35 // clear out our graph window
36 int ClearGraph(int redraw
)
38 int gtl
= GraphTraceLen
;
39 memset(GraphBuffer
, 0x00, GraphTraceLen
);
48 // option '1' to save GraphBuffer any other to restore
49 void save_restoreGB(uint8_t saveOpt
)
51 static int SavedGB
[MAX_GRAPH_TRACE_LEN
];
52 static int SavedGBlen
;
53 static bool GB_Saved
= false;
55 if (saveOpt
==1) { //save
56 memcpy(SavedGB
, GraphBuffer
, sizeof(GraphBuffer
));
57 SavedGBlen
= GraphTraceLen
;
59 } else if (GB_Saved
){ //restore
60 memcpy(GraphBuffer
, SavedGB
, sizeof(GraphBuffer
));
61 GraphTraceLen
= SavedGBlen
;
67 // DETECT CLOCK NOW IN LFDEMOD.C
69 void setGraphBuf(uint8_t *buff
, size_t size
)
71 if ( buff
== NULL
) return;
74 if ( size
> MAX_GRAPH_TRACE_LEN
)
75 size
= MAX_GRAPH_TRACE_LEN
;
77 for (; i
< size
; ++i
){
78 GraphBuffer
[i
]=buff
[i
]-128;
84 size_t getFromGraphBuf(uint8_t *buff
)
86 if (buff
== NULL
) return 0;
88 for (i
=0;i
<GraphTraceLen
;++i
){
89 if (GraphBuffer
[i
]>127) GraphBuffer
[i
]=127; //trim
90 if (GraphBuffer
[i
]<-127) GraphBuffer
[i
]=-127; //trim
91 buff
[i
]=(uint8_t)(GraphBuffer
[i
]+128);
96 // A simple test to see if there is any data inside Graphbuffer.
99 if ( GraphTraceLen
<= 0) {
100 PrintAndLog("No data available, try reading something first");
106 // Detect high and lows in Grapbuffer.
107 // Only loops the first 256 values.
108 void DetectHighLowInGraph(int *high
, int *low
, bool addFuzz
) {
110 uint8_t loopMax
= 255;
111 if ( loopMax
> GraphTraceLen
)
112 loopMax
= GraphTraceLen
;
114 for (uint8_t i
= 0; i
< loopMax
; ++i
) {
115 if (GraphBuffer
[i
] > *high
)
116 *high
= GraphBuffer
[i
];
117 else if (GraphBuffer
[i
] < *low
)
118 *low
= GraphBuffer
[i
];
121 //12% fuzz in case highs and lows aren't clipped
123 *high
= (int)(*high
* .88);
124 *low
= (int)(*low
* .88);
128 // Get or auto-detect ask clock rate
129 int GetAskClock(const char str
[], bool printAns
, bool verbose
)
132 sscanf(str
, "%i", &clock
);
133 if (!strcmp(str
, ""))
139 uint8_t grph
[MAX_GRAPH_TRACE_LEN
]={0};
140 size_t size
= getFromGraphBuf(grph
);
143 PrintAndLog("Failed to copy from graphbuffer");
146 int start
= DetectASKClock(grph
, size
, &clock
, 20);
147 // Only print this message if we're not looping something
149 PrintAndLog("Auto-detected clock rate: %d, Best Starting Position: %d", clock
, start
);
154 uint8_t GetPskCarrier(const char str
[], bool printAns
, bool verbose
)
157 uint8_t grph
[MAX_GRAPH_TRACE_LEN
]={0};
158 size_t size
= getFromGraphBuf(grph
);
161 PrintAndLog("Failed to copy from graphbuffer");
164 //uint8_t countPSK_FC(uint8_t *BitStream, size_t size)
166 carrier
= countFC(grph
,size
,0);
167 // Only print this message if we're not looping something
169 PrintAndLog("Auto-detected PSK carrier rate: %d", carrier
);
174 int GetPskClock(const char str
[], bool printAns
, bool verbose
)
177 sscanf(str
, "%i", &clock
);
178 if (!strcmp(str
, ""))
184 uint8_t grph
[MAX_GRAPH_TRACE_LEN
]={0};
185 size_t size
= getFromGraphBuf(grph
);
188 PrintAndLog("Failed to copy from graphbuffer");
191 clock
= DetectPSKClock(grph
,size
,0);
192 // Only print this message if we're not looping something
194 PrintAndLog("Auto-detected clock rate: %d", clock
);
199 uint8_t GetNrzClock(const char str
[], bool printAns
, bool verbose
)
202 sscanf(str
, "%i", &clock
);
203 if (!strcmp(str
, ""))
209 uint8_t grph
[MAX_GRAPH_TRACE_LEN
]={0};
210 size_t size
= getFromGraphBuf(grph
);
213 PrintAndLog("Failed to copy from graphbuffer");
216 clock
= DetectNRZClock(grph
, size
, 0);
217 // Only print this message if we're not looping something
219 PrintAndLog("Auto-detected clock rate: %d", clock
);
224 //attempt to detect the field clock and bit clock for FSK
225 uint8_t GetFskClock(const char str
[], bool printAns
, bool verbose
)
228 sscanf(str
, "%i", &clock
);
229 if (!strcmp(str
, ""))
231 if (clock
!= 0) return (uint8_t)clock
;
234 uint8_t fc1
=0, fc2
=0, rf1
=0;
235 uint8_t ans
= fskClocks(&fc1
, &fc2
, &rf1
, verbose
);
236 if (ans
== 0) return 0;
237 if ((fc1
==10 && fc2
==8) || (fc1
==8 && fc2
==5)){
238 if (printAns
) PrintAndLog("Detected Field Clocks: FC/%d, FC/%d - Bit Clock: RF/%d", fc1
, fc2
, rf1
);
242 PrintAndLog("DEBUG: unknown fsk field clock detected");
243 PrintAndLog("Detected Field Clocks: FC/%d, FC/%d - Bit Clock: RF/%d", fc1
, fc2
, rf1
);
247 uint8_t fskClocks(uint8_t *fc1
, uint8_t *fc2
, uint8_t *rf1
, bool verbose
)
249 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
]={0};
250 size_t size
= getFromGraphBuf(BitStream
);
251 if (size
==0) return 0;
252 uint16_t ans
= countFC(BitStream
, size
, 1);
254 if (verbose
) PrintAndLog("DEBUG: No data found");
257 *fc1
= (ans
>> 8) & 0xFF;
260 *rf1
= detectFSKClk(BitStream
, size
, *fc1
, *fc2
);
262 if (verbose
) PrintAndLog("DEBUG: Clock detect error");