2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2010-02-26 05:57:35 +08:00
|
|
|
// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
|
|
|
|
//
|
2010-02-21 08:47:22 +08:00
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// GUI functions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-07-28 03:32:15 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
void ShowGraphWindow(void);
|
|
|
|
void HideGraphWindow(void);
|
|
|
|
void RepaintGraphWindow(void);
|
|
|
|
void MainGraphics(void);
|
2017-10-21 02:39:57 +08:00
|
|
|
void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool usb_present);
|
2009-04-09 14:43:20 +08:00
|
|
|
void ExitGraphics(void);
|
2018-02-21 21:52:31 +08:00
|
|
|
#ifndef MAX_GRAPH_TRACE_LEN
|
2016-02-19 03:19:33 +08:00
|
|
|
#define MAX_GRAPH_TRACE_LEN (40000 * 8)
|
2018-02-21 21:52:31 +08:00
|
|
|
#endif
|
2009-04-09 14:43:20 +08:00
|
|
|
extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
|
|
|
|
extern int GraphTraceLen;
|
2017-07-28 03:32:15 +08:00
|
|
|
extern int s_Buff[MAX_GRAPH_TRACE_LEN];
|
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
extern double CursorScaleFactor;
|
2017-07-28 03:32:15 +08:00
|
|
|
extern int PlotGridX, PlotGridY, PlotGridXdefault, PlotGridYdefault, CursorCPos, CursorDPos, GridOffset;
|
2009-04-09 14:43:20 +08:00
|
|
|
extern int CommandFinished;
|
2009-04-28 03:56:43 +08:00
|
|
|
extern int offline;
|
2017-07-28 03:32:15 +08:00
|
|
|
extern bool GridLocked;
|
|
|
|
|
|
|
|
//Operations defined in data_operations
|
2019-04-06 06:52:55 +08:00
|
|
|
//int autoCorr(const int* in, int *out, size_t len, int window);
|
2019-04-06 06:38:22 +08:00
|
|
|
int AskEdgeDetect(const int *in, int *out, int len, int threshold);
|
|
|
|
int AutoCorrelate(const int *in, int *out, size_t len, int window, bool SaveGrph, bool verbose);
|
|
|
|
int directionalThreshold(const int *in, int *out, size_t len, int8_t up, int8_t down);
|
|
|
|
void save_restoreGB(uint8_t saveOpt);
|
2017-07-28 03:32:15 +08:00
|
|
|
|
|
|
|
#define GRAPH_SAVE 1
|
|
|
|
#define GRAPH_RESTORE 0
|
|
|
|
#define MAX_DEMOD_BUF_LEN (1024*128)
|
|
|
|
extern uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
|
|
|
|
extern size_t DemodBufferLen;
|
2018-02-21 21:59:06 +08:00
|
|
|
extern size_t g_DemodStartIdx;
|
2017-07-28 03:32:15 +08:00
|
|
|
extern bool showDemod;
|
|
|
|
extern uint8_t g_debugMode;
|
2009-04-09 14:43:20 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|