aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/display_wave.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/display_wave.h')
-rw-r--r--src/common/display_wave.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common/display_wave.h b/src/common/display_wave.h
deleted file mode 100644
index 57a489a..0000000
--- a/src/common/display_wave.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#define MAX_DISPLAY_WIDTH 1024
-
-typedef struct sender sender_t;
-
-typedef struct display_wave {
- int interval_pos;
- int interval_max;
- int offset;
- int16_t buffer[MAX_DISPLAY_WIDTH];
-} dispwav_t;
-
-void display_wave_init(sender_t *sender, int samplerate);
-void display_wave_on(int on);
-void display_limit_scroll(int on);
-void display_wave(sender_t *sender, int16_t *samples, int length);
-