]>
Commit | Line | Data |
---|---|---|
a553f267 | 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 | ||
7fe9b0b7 | 11 | #ifndef GRAPH_H__ |
12 | #define GRAPH_H__ | |
d5a72d2f | 13 | #include <stdint.h> |
7fe9b0b7 | 14 | |
15 | void AppendGraph(int redraw, int clock, int bit); | |
16 | int ClearGraph(int redraw); | |
d5a72d2f | 17 | //int DetectClock(int peak); |
18 | int getFromGraphBuf(uint8_t *buff); | |
7fe9b0b7 | 19 | int GetClock(const char *str, int peak, int verbose); |
d5a72d2f | 20 | void setGraphBuf(uint8_t *buff,int size); |
7fe9b0b7 | 21 | |
22 | #define MAX_GRAPH_TRACE_LEN (1024*128) | |
23 | extern int GraphBuffer[MAX_GRAPH_TRACE_LEN]; | |
24 | extern int GraphTraceLen; | |
25 | ||
26 | #endif |