2 * Copyright © 2009 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 static int16_t altitude_table[] = {
24 #define ALT_FRAC_SCALE (1 << ALT_FRAC_BITS)
25 #define ALT_FRAC_MASK (ALT_FRAC_SCALE - 1)
28 aoview_pres_to_altitude(int16_t pres)
35 o = pres >> ALT_FRAC_BITS;
36 part = pres & ALT_FRAC_MASK;
38 return ((int32_t) altitude_table[o] * (ALT_FRAC_SCALE - part) +
39 (int32_t) altitude_table[o+1] * part + (ALT_FRAC_SCALE >> 1)) >> ALT_FRAC_BITS;
43 aoview_altitude_to_pres(int16_t alt)
45 int16_t span, sub_span;
51 while ((h - l) != 1) {
53 if (altitude_table[m] < alt)
58 span = altitude_table[l] - altitude_table[h];
59 sub_span = altitude_table[l] - alt;
60 pres = ((((int32_t) l * (span - sub_span) + (int32_t) h * sub_span) << ALT_FRAC_BITS) + (span >> 1)) / span;
65 return (int16_t) pres;