]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/data_operations.c
1 #include <data_operations.h>
3 extern void PrintAndLog(char *fmt
, ...);
5 int autoCorr(const int* in
, int *out
, size_t len
, int window
)
7 static int CorrelBuffer
[MAX_GRAPH_TRACE_LEN
];
10 PrintAndLog("needs a window");
14 PrintAndLog("window must be smaller than trace (%d samples)",
19 PrintAndLog("performing %d correlations", len
- window
);
21 for (int i
= 0; i
< len
- window
; ++i
) {
23 for (int j
= 0; j
< window
; ++j
) {
24 sum
+= (in
[j
]*in
[i
+ j
]) / 256;
26 CorrelBuffer
[i
] = sum
;
28 //GraphTraceLen = GraphTraceLen - window;
29 memcpy(out
, CorrelBuffer
, len
* sizeof (int));
32 int directionalThreshold(const int* in
, int *out
, size_t len
, int8_t up
, int8_t down
)
34 int lastValue
= in
[0];
35 out
[0] = 0; // Will be changed at the end, but init 0 as we adjust to last samples value if no threshold kicks in.
37 for (int i
= 1; i
< len
; ++i
) {
38 // Apply first threshold to samples heading up
39 if (in
[i
] >= up
&& in
[i
] > lastValue
)
41 lastValue
= out
[i
]; // Buffer last value as we overwrite it.
44 // Apply second threshold to samples heading down
45 else if (in
[i
] <= down
&& in
[i
] < lastValue
)
47 lastValue
= out
[i
]; // Buffer last value as we overwrite it.
52 lastValue
= out
[i
]; // Buffer last value as we overwrite it.
56 out
[0] = out
[1]; // Align with first edited sample.