-
Notifications
You must be signed in to change notification settings - Fork 145
/
osc.h
180 lines (153 loc) · 5.73 KB
/
osc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/**
* Copyright (C) 2012-2013 Analog Devices, Inc.
*
* Licensed under the GPL-2.
*
**/
#ifndef __OSC_H__
#define __OSC_H__
#define IIO_THREADS
#include <gtkdatabox.h>
#include <complex.h>
#include <iio.h>
#include "oscplot.h"
#ifdef __APPLE__
/*
* Reverse memchr()
* Find the last occurrence of 'c' in the buffer 's' of size 'n'.
* This is GNU extension and is not available on OS X/Xcode, so
* it must be provided here.
*/
const void *memrchr(const void *src, int c, size_t length);
#endif
#define DEFAULT_PROFILE_NAME ".osc_profile.ini"
#define OSC_INI_SECTION "IIO Oscilloscope"
#define CAPTURE_INI_SECTION OSC_INI_SECTION " - Capture Window"
#define SAVE_CSV 0
#define SAVE_MAT 1
#define SAVE_VSA 2
#define SAVE_PNG 3
extern GtkWidget *capture_graph;
extern gint capture_function;
extern bool str_endswith(const char *str, const char *needle);
extern void math_expression_objects_clean(void);
/* Max 1 Meg (2^20) */
#define MAX_SAMPLES 1048576
#define TMP_INI_FILE "/tmp/.%s.tmp"
#ifndef MAX_MARKERS
#define MAX_MARKERS 10
#endif
#define OFF_MRK "Markers Off"
#define PEAK_MRK "Peak Markers"
#define FIX_MRK "Fixed Markers"
#define SINGLE_MRK "Single Tone Markers"
#define DUAL_MRK "Two Tone Markers"
#define IMAGE_MRK "Image Markers"
#define ADD_MRK "Add Marker"
#define REMOVE_MRK "Remove Marker"
#ifndef timespeccmp
#define timespeccmp(tsp, usp, cmp) \
(((tsp)->tv_sec == (usp)->tv_sec) ? \
((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
((tsp)->tv_sec cmp (usp)->tv_sec))
#endif
#ifdef DEBUG
#define DBG(fmt, arg...) printf("DEBUG: %s: " fmt "\n" , __FUNCTION__ , ## arg)
#else
#define DBG(D...)
#endif
#define fallthrough __attribute__((__fallthrough__))
struct osc_plugin;
struct marker_type {
gfloat x;
gfloat y;
int bin; /* need to keep this signed, due to the way we calc harmonics */
bool active;
char label[6];
float complex vector;
float angle;
GtkDataboxGraph *graph;
};
enum marker_types {
MARKER_OFF,
MARKER_PEAK,
MARKER_FIXED,
MARKER_ONE_TONE,
MARKER_TWO_TONE,
MARKER_IMAGE,
MARKER_NULL
};
#define TIME_PLOT 0
#define FFT_PLOT 1
#define XY_PLOT 2
#define XCORR_PLOT 3
#define SPECTRUM_PLOT 4
#define USE_INTERN_SAMPLING_FREQ -1.0
bool rx_update_device_sampling_freq(const char *device, double freq);
bool rx_update_channel_lo_freq(const char *device, const char *channel,
double lo_freq);
void dialogs_init(GtkBuilder *builder);
char * usb_get_serialnumber(struct iio_context *context);
void usb_set_serialnumber(char *);
void trigger_dialog_init(GtkBuilder *builder);
void trigger_settings_for_device(GtkBuilder *builder, const char *device);
void application_quit (void);
bool dma_valid_selection(const char *device, unsigned mask, unsigned channel_count);
unsigned global_enabled_channels_mask(struct iio_device *dev);
void add_ch_setup_check_fct(char *device_name, void *fp);
void *find_setup_check_fct_by_devname(const char *dev_name);
bool is_input_device(const struct iio_device *dev);
bool is_output_device(const struct iio_device *dev);
struct iio_context * get_context_from_osc(void);
void move_gtk_window_on_screen(GtkWindow *window, gint x, gint y);
const void * plugin_get_device_by_reference(const char *device_name);
int plugin_data_capture_size(const char *device);
int plugin_data_capture_of_plot(OscPlot *plot, const char *device,
gfloat ***cooked_data, struct marker_type **markers_cp);
int plugin_data_capture_num_active_channels(const char *device);
int plugin_data_capture_bytes_per_sample(const char *device);
OscPlot * plugin_find_plot_with_domain(int domain);
enum marker_types plugin_get_plot_marker_type(OscPlot *plot, const char *device);
void plugin_set_plot_marker_type(OscPlot *plot, const char *device, enum marker_types type);
gdouble plugin_get_plot_fft_avg(OscPlot *plot, const char *device);
OscPlot * plugin_get_new_plot(void);
void plugin_osc_stop_capture(void);
void plugin_osc_start_capture(void);
bool plugin_osc_running_state(void);
void plugin_osc_stop_all_plots(void);
void save_complete_profile(const char *filename);
void load_complete_profile(const char *filename);
GtkWidget * create_nonblocking_popup(GtkMessageType type,
const char *title, const char *str, ...);
gint create_blocking_popup(GtkMessageType type, GtkButtonsType button,
const char *title, const char *str, ...);
gint fru_connect(void);
gint connect_dialog(bool load_profile);
void application_reload(struct iio_context *ctx, bool load_profile);
struct iio_context * osc_create_context(void);
void osc_destroy_context(struct iio_context *ctx);
void osc_process_gtk_events(unsigned int msecs);
int osc_test_value(struct iio_context *ctx,
int line, const char *attribute, const char *value);
int osc_identify_attrib(struct iio_context *ctx, const char *attrib,
struct iio_device **dev, struct iio_channel **chn,
const char **attr, bool *debug);
int osc_read_value(struct iio_context *ctx,
const char *value, long long *out);
FILE * osc_get_log_file(const char *path);
int osc_log_value(struct iio_context *ctx,
const char *attribute, const char *value);
int osc_plugin_default_handle(struct iio_context *ctx,
int line, const char *attrib, const char *value,
int (*driver_handle)(struct osc_plugin *plugin, const char *, const char *),
struct osc_plugin *plugin);
GArray* get_data_for_possible_plugin_instances_helper(const char *dev_id, const char *plugin);
/* Private functions */
extern int load_default_profile(char *filename, bool load_plugins);
extern void do_init(struct iio_context *new_ctx);
extern void create_default_plot(void);
extern GtkWidget * new_plot_cb(GtkMenuItem *item, gpointer user_data);
extern bool check_inifile(const char *filepath);
extern int osc_load_glade_file(GtkBuilder *builder, const char *fname);
extern int osc_load_objects_from_glade_file(GtkBuilder *builder, const char *fname, gchar **object_ids);
#endif