FreeCalypso > hg > gsm-codec-lib
comparison libgsmhr1/dhf_params.c @ 496:af70bf42eb1b
libgsmhr1: implement DHF const array
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 18 Jun 2024 00:15:46 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
495:aee13079db3c | 496:af70bf42eb1b |
---|---|
1 /* | |
2 * This module holds a public const datum: the broken-down parameters | |
3 * form of HRv1 decoder homing frame (DHF). | |
4 */ | |
5 | |
6 #include <stdint.h> | |
7 #include "tw_gsmhr.h" | |
8 | |
9 const int16_t gsmhr_dhf_params[GSMHR_NUM_PARAMS] = { | |
10 0x0000, /* R0 */ | |
11 0x0371, /* LPC1 */ | |
12 0x015E, /* LPC2 */ | |
13 0x00c3, /* LPC3 */ | |
14 0x0001, /* INT_LPC */ | |
15 0x0000, /* MODE */ | |
16 0x0047, /* CODE1_1 */ | |
17 0x004a, /* CODE2_1 */ | |
18 0x0000, /* GSP0_1 */ | |
19 0x0009, /* CODE1_2 */ | |
20 0x0026, /* CODE2_2 */ | |
21 0x0007, /* GSP0_2 */ | |
22 0x0000, /* CODE1_3 */ | |
23 0x0000, /* CODE2_3 */ | |
24 0x0000, /* GSP0_3 */ | |
25 0x0000, /* CODE1_4 */ | |
26 0x0000, /* CODE2_4 */ | |
27 0x0000 /* GSP0_4 */ | |
28 }; |