-
Notifications
You must be signed in to change notification settings - Fork 211
/
demod_zvei1.c
56 lines (45 loc) · 1.69 KB
/
demod_zvei1.c
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
/*
* demod_zvei1.c
*
* Copyright (C) 2013
* Elias Oenal ([email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#define SAMPLE_RATE 22050
#define PHINC(x) ((x)*0x10000/SAMPLE_RATE)
#include "multimon.h"
static const unsigned int zvei1_freq[16] = {
PHINC(2400), PHINC(1060), PHINC(1160), PHINC(1270),
PHINC(1400), PHINC(1530), PHINC(1670), PHINC(1830),
PHINC(2000), PHINC(2200), PHINC(2800), PHINC(810),
PHINC(970), PHINC(885), PHINC(2600), PHINC(680)
};
/* ---------------------------------------------------------------------- */
static void zvei1_init(struct demod_state *s)
{
selcall_init(s);
}
static void zvei1_deinit(struct demod_state *s)
{
selcall_deinit(s);
}
static void zvei1_demod(struct demod_state *s, buffer_t buffer, int length)
{
selcall_demod(s, buffer.fbuffer, length, zvei1_freq, demod_zvei1.name);
}
const struct demod_param demod_zvei1 = {
"ZVEI1", true, SAMPLE_RATE, 0, zvei1_init, zvei1_demod, zvei1_deinit
};