81 lines
1.8 KiB
C
81 lines
1.8 KiB
C
/* -*- mode: c; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4; coding: utf-8 -*- */
|
|
/************************************************************************************
|
|
** **
|
|
** mcHF QRP Transceiver **
|
|
** K Atanassov - M0NKA 2014 **
|
|
** **
|
|
**---------------------------------------------------------------------------------**
|
|
** **
|
|
** File name: **
|
|
** Description: **
|
|
** Last Modified: Created October 2015, KA7OEI **
|
|
** Licence: GNU GPLv3 **
|
|
************************************************************************************/
|
|
|
|
#ifndef __SUBAUDIBLE_TONE_TABLE
|
|
#define __SUBAUDIBLE_TONE_TABLE
|
|
|
|
|
|
static const float fm_subaudible_tone_table[] =
|
|
{
|
|
0,
|
|
67.0,
|
|
69.3,
|
|
71.9,
|
|
74.4,
|
|
77.0,
|
|
79.7,
|
|
82.5,
|
|
85.4,
|
|
88.5,
|
|
91.5,
|
|
94.8,
|
|
97.4,
|
|
100.0,
|
|
103.5,
|
|
107.2,
|
|
110.9,
|
|
114.8,
|
|
118.8,
|
|
123.0,
|
|
127.3,
|
|
131.8,
|
|
136.5,
|
|
141.3,
|
|
146.2,
|
|
150.0,
|
|
151.4,
|
|
156.7,
|
|
159.8,
|
|
162.2,
|
|
165.5,
|
|
167.9,
|
|
171.3,
|
|
173.8,
|
|
177.3,
|
|
179.9,
|
|
183.5,
|
|
186.2,
|
|
189.9,
|
|
192.8,
|
|
196.6,
|
|
199.5,
|
|
203.5,
|
|
206.5,
|
|
210.7,
|
|
213.8,
|
|
218.1,
|
|
221.3,
|
|
225.7,
|
|
229.1,
|
|
233.6,
|
|
237.1,
|
|
241.8,
|
|
245.5,
|
|
250.3,
|
|
254.1,
|
|
0
|
|
};
|
|
|
|
#endif
|