X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=altosui%2FAltos.java;h=6a2d9b9b202ff2ce0dddff09526316da14ef3616;hb=23f441b95e55fbee709382b05d325bc021285766;hp=5df004c5b0dfda75b127eaab5429eb3901beba7a;hpb=9cdef76c1275b343099d0d01af82d7eadd36a410;p=fw%2Faltos diff --git a/altosui/Altos.java b/altosui/Altos.java index 5df004c5..6a2d9b9b 100644 --- a/altosui/Altos.java +++ b/altosui/Altos.java @@ -36,7 +36,7 @@ public class Altos { static final int AO_LOG_GPS_ALT = 'H'; static final int AO_LOG_GPS_SAT = 'V'; static final int AO_LOG_GPS_DATE = 'Y'; - static final int AO_LOG_HEIGHT = 'h'; + static final int AO_LOG_PRESSURE = 'P'; /* Added for header fields in eeprom files */ static final int AO_LOG_CONFIG_VERSION = 1000; @@ -301,4 +301,14 @@ public class Altos { public final static int product_any = 0x10000; public final static int product_basestation = 0x10000 + 1; + + static String bt_product_telebt() { + if (load_library()) + return libaltosConstants.BLUETOOTH_PRODUCT_TELEBT; + return "TeleBT"; + } + + public final static String bt_product_telebt = bt_product_telebt(); + + public static AltosBTKnown bt_known = new AltosBTKnown(); }