mirror of
https://github.com/google/pebble.git
synced 2025-07-17 19:46:40 -04:00
71 lines
3.2 KiB
C
71 lines
3.2 KiB
C
/*
|
|
* Copyright 2024 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "util/uuid.h"
|
|
|
|
//! @file This file contains Pebble-specific Bluetooth identifiers (numbers, UUIDs, etc.)
|
|
//! Also see https://pebbletechnology.atlassian.net/wiki/display/DEV/Pebble+GATT+Services
|
|
|
|
//! Bluetopia does not contain our Vendor ID, yet.
|
|
//! See Bluetooth Company Identifiers:
|
|
//! http://www.bluetooth.org/Technical/AssignedNumbers/identifiers.htm
|
|
//! Be careful not to use with with BT Classic! See sdp.c why.
|
|
#define PEBBLE_BT_VENDOR_ID (0x0154)
|
|
|
|
//! Our Bluetooth-SIG-Registered 16-bit UUID:
|
|
//! Pebble Technology Corporation
|
|
//! Pebble Smartwatch Service
|
|
#define PEBBLE_BT_PAIRING_SERVICE_UUID_16BIT (0xFED9)
|
|
|
|
//! The Service UUID of the "Pebble Protocol over GATT" (PPoGATT) service.
|
|
//! This UUID needs to be expanded using the Pebble Base UUID (@see pebble_bt_uuid_expand)
|
|
#define PEBBLE_BT_PPOGATT_SERVICE_UUID_32BIT (0x10000000)
|
|
#define PEBBLE_BT_PPOGATT_DATA_CHARACTERISTIC_UUID_32BIT (0x10000001)
|
|
#define PEBBLE_BT_PPOGATT_META_CHARACTERISTIC_UUID_32BIT (0x10000002)
|
|
|
|
//! The Service UUID of the "Pebble Protocol over GATT" (PPoGATT) service that the watch
|
|
//! publishes to operate as a Server instead of it's normal client role. This allows certain
|
|
//! sad Android phones to communicate with the watch
|
|
#define PEBBLE_BT_PPOGATT_WATCH_SERVER_SERVICE_UUID_32BIT (0x30000003)
|
|
#define PEBBLE_BT_PPOGATT_WATCH_SERVER_DATA_CHARACTERISTIC_UUID_32BIT (0x30000004)
|
|
#define PEBBLE_BT_PPOGATT_WATCH_SERVER_META_CHARACTERISTIC_UUID_32BIT (0x30000005)
|
|
#define PEBBLE_BT_PPOGATT_WATCH_SERVER_DATA_WR_CHARACTERISTIC_UUID_32BIT (0x30000006)
|
|
|
|
//! The Service UUID of the "Pebble App Launch" service.
|
|
//! This UUID needs to be expanded using the Pebble Base UUID (@see pebble_bt_uuid_expand)
|
|
#define PEBBLE_BT_APP_LAUNCH_SERVICE_UUID_32BIT (0x20000000)
|
|
#define PEBBLE_BT_APP_LAUNCH_CHARACTERISTIC_UUID_32BIT (0x20000001)
|
|
|
|
//! Assigns a 32-bit (or 16-bit) UUID that is based on the Pebble Base UUID,
|
|
//! XXXXXXXX-328E-0FBB-C642-1AA6699BDADA.
|
|
//! @param uuid The UUID storage to assign the constructed UUID to.
|
|
//! @param value The 32-bit (or 16-bit) UUID value to use.
|
|
//! @see bt_uuid_expand_32bit and bt_uuid_expand_16bit for functions that expand
|
|
//! using the BT SIG's Base UUID.
|
|
void pebble_bt_uuid_expand(Uuid *uuid, uint32_t value);
|
|
|
|
//! Macro that does the same as pebble_bt_uuid_expand, but then at compile-time
|
|
#define PEBBLE_BT_UUID_EXPAND(u) \
|
|
(0xff & ((uint32_t) u) >> 24), \
|
|
(0xff & ((uint32_t) u) >> 16), \
|
|
(0xff & ((uint32_t) u) >> 8), \
|
|
(0xff & ((uint32_t) u) >> 0), \
|
|
0x32, 0x8E, 0x0F, 0xBB, \
|
|
0xC6, 0x42, 0x1A, 0xA6, \
|
|
0x69, 0x9B, 0xDA, 0xDA
|