]> git.zerfleddert.de Git - proxmark3-svn/blob - client/graph.h
fix compile errors in newer environment
[proxmark3-svn] / client / graph.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 //
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
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Graph utilities
9 //-----------------------------------------------------------------------------
10
11 #ifndef GRAPH_H__
12 #define GRAPH_H__
13 #include <stdint.h>
14 #include "data_operations.h"
15
16 void AppendGraph(int redraw, int clock, int bit);
17 int ClearGraph(int redraw);
18 //int DetectClock(int peak);
19 size_t getFromGraphBuf(uint8_t *buff);
20 int GetClock(const char *str, int peak, int verbose);
21 int GetNRZpskClock(const char *str, int peak, int verbose);
22 void setGraphBuf(uint8_t *buff, size_t size);
23
24 bool HasGraphData();
25 void DetectHighLowInGraph(int *high, int *low, bool addFuzz);
26
27
28 #endif
Impressum, Datenschutz