]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/graph.h
Merge pull request #74 from marshmellow42/master
[proxmark3-svn] / client / graph.h
... / ...
CommitLineData
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
15void AppendGraph(int redraw, int clock, int bit);
16int ClearGraph(int redraw);
17//int DetectClock(int peak);
18size_t getFromGraphBuf(uint8_t *buff);
19int GetAskClock(const char str[], bool printAns, bool verbose);
20int GetPskClock(const char str[], bool printAns, bool verbose);
21uint8_t GetPskCarrier(const char str[], bool printAns, bool verbose);
22uint8_t GetNrzClock(const char str[], bool printAns, bool verbose);
23uint8_t GetFskClock(const char str[], bool printAns, bool verbose);
24uint8_t fskClocks(uint8_t *fc1, uint8_t *fc2, uint8_t *rf1, bool verbose);
25void setGraphBuf(uint8_t *buff, size_t size);
26
27bool HasGraphData();
28void DetectHighLowInGraph(int *high, int *low, bool addFuzz);
29
30// Max graph trace len: 40000 (bigbuf) * 8 (at 1 bit per sample)
31#define MAX_GRAPH_TRACE_LEN (40000 * 8 )
32
33extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
34extern int GraphTraceLen;
35#endif
Impressum, Datenschutz