1 /* 2 * Copyright (C) 2020 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 CHPP_STANDARD_UUIDS_H_ 18 #define CHPP_STANDARD_UUIDS_H_ 19 20 #ifdef __cplusplus 21 extern "C" { 22 #endif 23 24 /************************************************ 25 * Client / Service UUID v4 Definitions 26 ***********************************************/ 27 28 /** 29 * Standard WWAN UUID 30 */ 31 #define CHPP_UUID_WWAN_STANDARD \ 32 { \ 33 0x1f, 0x56, 0x3d, 0xf2, 0x5d, 0x07, 0x49, 0x87, 0xba, 0x2b, 0xb3, 0x0e, \ 34 0xf2, 0x3d, 0x11, 0x28 \ 35 } 36 37 /** 38 * Standard WiFi UUID 39 */ 40 #define CHPP_UUID_WIFI_STANDARD \ 41 { \ 42 0x24, 0x2c, 0x25, 0xaa, 0xc8, 0x2b, 0x40, 0xf1, 0xb8, 0x42, 0x6b, 0xdc, \ 43 0x8c, 0x46, 0xa1, 0xb6 \ 44 } 45 46 /** 47 * Standard GNSS UUID 48 */ 49 #define CHPP_UUID_GNSS_STANDARD \ 50 { \ 51 0x3a, 0x64, 0x11, 0xa2, 0x50, 0x5b, 0x44, 0x42, 0xaf, 0xdb, 0x41, 0x8e, \ 52 0x3a, 0x74, 0xfa, 0xf4 \ 53 } 54 55 #ifdef __cplusplus 56 } 57 #endif 58 59 #endif // CHPP_STANDARD_UUIDS_H_ 60