summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/ao_convert_pa.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/ao_convert_pa.c b/src/core/ao_convert_pa.c
index 2793b77c..55fe6e7d 100644
--- a/src/core/ao_convert_pa.c
+++ b/src/core/ao_convert_pa.c
@@ -53,6 +53,7 @@ ao_pa_to_altitude(int32_t pa)
return (low + high) >> ALT_SHIFT;
}
+#ifdef AO_CONVERT_TEST
int32_t
ao_altitude_to_pa(int32_t alt)
{
@@ -78,3 +79,4 @@ ao_altitude_to_pa(int32_t alt)
pa = 0;
return pa;
}
+#endif