123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- #ifndef GATT_UUID_H
- #define GATT_UUID_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #define GAP_SERVICE_UUID 0x1800
- #define GATT_SERVICE_UUID 0x1801
- #define GATT_PRIMARY_SERVICE_UUID 0x2800
- #define GATT_SECONDARY_SERVICE_UUID 0x2801
- #define GATT_INCLUDE_UUID 0x2802
- #define GATT_CHARACTER_UUID 0x2803
- #define GATT_CHAR_EXT_PROPS_UUID 0x2900
- #define GATT_CHAR_USER_DESC_UUID 0x2901
- #define GATT_CLIENT_CHAR_CFG_UUID 0x2902
- #define GATT_SERV_CHAR_CFG_UUID 0x2903
- #define GATT_CHAR_FORMAT_UUID 0x2904
- #define GATT_CHAR_AGG_FORMAT_UUID 0x2905
- #define GATT_VALID_RANGE_UUID 0x2906
- #define GATT_EXT_REPORT_REF_UUID 0x2907
- #define GATT_REPORT_REF_UUID 0x2908
- #define DEVICE_NAME_UUID 0x2A00
- #define APPEARANCE_UUID 0x2A01
- #define PERI_PRIVACY_FLAG_UUID 0x2A02
- #define RECONNECT_ADDR_UUID 0x2A03
- #define PERI_CONN_PARAM_UUID 0x2A04
- #define SERVICE_CHANGED_UUID 0x2A05
- extern CONST uint8 gapServiceUUID[];
- extern CONST uint8 gattServiceUUID[];
- extern CONST uint8 primaryServiceUUID[];
- extern CONST uint8 secondaryServiceUUID[];
- extern CONST uint8 includeUUID[];
- extern CONST uint8 characterUUID[];
- extern CONST uint8 charExtPropsUUID[];
- extern CONST uint8 charUserDescUUID[];
- extern CONST uint8 clientCharCfgUUID[];
- extern CONST uint8 servCharCfgUUID[];
- extern CONST uint8 charFormatUUID[];
- extern CONST uint8 charAggFormatUUID[];
- extern CONST uint8 validRangeUUID[];
- extern CONST uint8 extReportRefUUID[];
- extern CONST uint8 reportRefUUID[];
- extern CONST uint8 deviceNameUUID[];
- extern CONST uint8 appearanceUUID[];
- extern CONST uint8 periPrivacyFlagUUID[];
- extern CONST uint8 reconnectAddrUUID[];
- extern CONST uint8 periConnParamUUID[];
- extern CONST uint8 serviceChangedUUID[];
- extern CONST uint8 manuNameUUID[];
- extern CONST uint8 serialNumUUID[];
- extern CONST uint8 manuAddrUUID[];
- extern const uint8 *GATT_FindUUIDRec( const uint8 *pUUID, uint8 len );
- #ifdef __cplusplus
- }
- #endif
- #endif
|