1 /* 2 * Copyright 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef BTA_HFP_API_H 18 #define BTA_HFP_API_H 19 20 /* HFP Versions */ 21 #define HFP_HSP_VERSION_UNKNOWN 0x0000 22 #define HFP_HSP_VERSION_DONT_CARE 0xFFFF 23 #define HFP_VERSION_1_1 0x0101 24 #define HFP_VERSION_1_5 0x0105 25 #define HFP_VERSION_1_6 0x0106 26 #define HFP_VERSION_1_7 0x0107 27 #define HFP_VERSION_1_8 0x0108 28 #define HFP_VERSION_1_9 0x0109 29 30 #define HSP_VERSION_1_0 0x0100 31 #define HSP_VERSION_1_2 0x0102 32 33 int get_default_hfp_version(); 34 35 #endif /* BTA_HFP_API_H */ 36