uuid.h 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596
  1. /** @file
  2. * @brief Bluetooth UUID handling
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_UUID_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_UUID_H_
  11. /**
  12. * @brief UUIDs
  13. * @defgroup bt_uuid UUIDs
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <sys/util.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /** @brief Bluetooth UUID types */
  22. enum {
  23. /** UUID type 16-bit. */
  24. BT_UUID_TYPE_16,
  25. /** UUID type 32-bit. */
  26. BT_UUID_TYPE_32,
  27. /** UUID type 128-bit. */
  28. BT_UUID_TYPE_128,
  29. };
  30. /** Size in octets of a 16-bit UUID */
  31. #define BT_UUID_SIZE_16 2
  32. /** Size in octets of a 32-bit UUID */
  33. #define BT_UUID_SIZE_32 4
  34. /** Size in octets of a 128-bit UUID */
  35. #define BT_UUID_SIZE_128 16
  36. /** @brief This is a 'tentative' type and should be used as a pointer only */
  37. struct bt_uuid {
  38. uint8_t type;
  39. };
  40. struct bt_uuid_16 {
  41. /** UUID generic type. */
  42. struct bt_uuid uuid;
  43. /** UUID value, 16-bit in host endianness. */
  44. uint16_t val;
  45. };
  46. struct bt_uuid_32 {
  47. /** UUID generic type. */
  48. struct bt_uuid uuid;
  49. /** UUID value, 32-bit in host endianness. */
  50. uint32_t val;
  51. };
  52. struct bt_uuid_128 {
  53. /** UUID generic type. */
  54. struct bt_uuid uuid;
  55. /** UUID value, 128-bit in little-endian format. */
  56. uint8_t val[BT_UUID_SIZE_128];
  57. };
  58. /** @brief Initialize a 16-bit UUID.
  59. *
  60. * @param value 16-bit UUID value in host endianness.
  61. */
  62. #define BT_UUID_INIT_16(value) \
  63. { \
  64. .uuid = { BT_UUID_TYPE_16 }, \
  65. .val = (value), \
  66. }
  67. /** @brief Initialize a 32-bit UUID.
  68. *
  69. * @param value 32-bit UUID value in host endianness.
  70. */
  71. #define BT_UUID_INIT_32(value) \
  72. { \
  73. .uuid = { BT_UUID_TYPE_32 }, \
  74. .val = (value), \
  75. }
  76. /** @brief Initialize a 128-bit UUID.
  77. *
  78. * @param value 128-bit UUID array values in little-endian format.
  79. * Can be combined with @ref BT_UUID_128_ENCODE to initialize a
  80. * UUID from the readable form of UUIDs.
  81. */
  82. #define BT_UUID_INIT_128(value...) \
  83. { \
  84. .uuid = { BT_UUID_TYPE_128 }, \
  85. .val = { value }, \
  86. }
  87. /** @brief Helper to declare a 16-bit UUID inline.
  88. *
  89. * @param value 16-bit UUID value in host endianness.
  90. *
  91. * @return Pointer to a generic UUID.
  92. */
  93. #define BT_UUID_DECLARE_16(value) \
  94. ((struct bt_uuid *) ((struct bt_uuid_16[]) {BT_UUID_INIT_16(value)}))
  95. /** @brief Helper to declare a 32-bit UUID inline.
  96. *
  97. * @param value 32-bit UUID value in host endianness.
  98. *
  99. * @return Pointer to a generic UUID.
  100. */
  101. #define BT_UUID_DECLARE_32(value) \
  102. ((struct bt_uuid *) ((struct bt_uuid_32[]) {BT_UUID_INIT_32(value)}))
  103. /** @brief Helper to declare a 128-bit UUID inline.
  104. *
  105. * @param value 128-bit UUID array values in little-endian format.
  106. * Can be combined with @ref BT_UUID_128_ENCODE to declare a
  107. * UUID from the readable form of UUIDs.
  108. *
  109. * @return Pointer to a generic UUID.
  110. */
  111. #define BT_UUID_DECLARE_128(value...) \
  112. ((struct bt_uuid *) ((struct bt_uuid_128[]) {BT_UUID_INIT_128(value)}))
  113. /** Helper macro to access the 16-bit UUID from a generic UUID. */
  114. #define BT_UUID_16(__u) CONTAINER_OF(__u, struct bt_uuid_16, uuid)
  115. /** Helper macro to access the 32-bit UUID from a generic UUID. */
  116. #define BT_UUID_32(__u) CONTAINER_OF(__u, struct bt_uuid_32, uuid)
  117. /** Helper macro to access the 128-bit UUID from a generic UUID. */
  118. #define BT_UUID_128(__u) CONTAINER_OF(__u, struct bt_uuid_128, uuid)
  119. /** @brief Encode 128 bit UUID into array values in little-endian format.
  120. *
  121. * Helper macro to initialize a 128-bit UUID array value from the readable form
  122. * of UUIDs, or encode 128-bit UUID values into advertising data
  123. * Can be combined with BT_UUID_DECLARE_128 to declare a 128-bit UUID.
  124. *
  125. * Example of how to declare the UUID `6E400001-B5A3-F393-E0A9-E50E24DCCA9E`
  126. *
  127. * @code
  128. * BT_UUID_DECLARE_128(
  129. * BT_UUID_128_ENCODE(0x6E400001, 0xB5A3, 0xF393, 0xE0A9, 0xE50E24DCCA9E))
  130. * @endcode
  131. *
  132. * Example of how to encode the UUID `6E400001-B5A3-F393-E0A9-E50E24DCCA9E`
  133. * into advertising data.
  134. *
  135. * @code
  136. * BT_DATA_BYTES(BT_DATA_UUID128_ALL,
  137. * BT_UUID_128_ENCODE(0x6E400001, 0xB5A3, 0xF393, 0xE0A9, 0xE50E24DCCA9E))
  138. * @endcode
  139. *
  140. * Just replace the hyphen by the comma and add `0x` prefixes.
  141. *
  142. * @param w32 First part of the UUID (32 bits)
  143. * @param w1 Second part of the UUID (16 bits)
  144. * @param w2 Third part of the UUID (16 bits)
  145. * @param w3 Fourth part of the UUID (16 bits)
  146. * @param w48 Fifth part of the UUID (48 bits)
  147. *
  148. * @return The comma separated values for UUID 128 initializer that
  149. * may be used directly as an argument for
  150. * @ref BT_UUID_INIT_128 or @ref BT_UUID_DECLARE_128
  151. */
  152. #define BT_UUID_128_ENCODE(w32, w1, w2, w3, w48) \
  153. (((w48) >> 0) & 0xFF), \
  154. (((w48) >> 8) & 0xFF), \
  155. (((w48) >> 16) & 0xFF), \
  156. (((w48) >> 24) & 0xFF), \
  157. (((w48) >> 32) & 0xFF), \
  158. (((w48) >> 40) & 0xFF), \
  159. (((w3) >> 0) & 0xFF), \
  160. (((w3) >> 8) & 0xFF), \
  161. (((w2) >> 0) & 0xFF), \
  162. (((w2) >> 8) & 0xFF), \
  163. (((w1) >> 0) & 0xFF), \
  164. (((w1) >> 8) & 0xFF), \
  165. (((w32) >> 0) & 0xFF), \
  166. (((w32) >> 8) & 0xFF), \
  167. (((w32) >> 16) & 0xFF), \
  168. (((w32) >> 24) & 0xFF)
  169. /** @brief Encode 16-bit UUID into array values in little-endian format.
  170. *
  171. * Helper macro to encode 16-bit UUID values into advertising data.
  172. *
  173. * Example of how to encode the UUID `0x180a` into advertising data.
  174. *
  175. * @code
  176. * BT_DATA_BYTES(BT_DATA_UUID16_ALL, BT_UUID_16_ENCODE(0x180a))
  177. * @endcode
  178. *
  179. * @param w16 UUID value (16-bits)
  180. *
  181. * @return The comma separated values for UUID 16 value that
  182. * may be used directly as an argument for @ref BT_DATA_BYTES.
  183. */
  184. #define BT_UUID_16_ENCODE(w16) \
  185. (((w16) >> 0) & 0xFF), \
  186. (((w16) >> 8) & 0xFF)
  187. /** @brief Encode 32-bit UUID into array values in little-endian format.
  188. *
  189. * Helper macro to encode 32-bit UUID values into advertising data.
  190. *
  191. * Example of how to encode the UUID `0x180a01af` into advertising data.
  192. *
  193. * @code
  194. * BT_DATA_BYTES(BT_DATA_UUID32_ALL, BT_UUID_32_ENCODE(0x180a01af))
  195. * @endcode
  196. *
  197. * @param w32 UUID value (32-bits)
  198. *
  199. * @return The comma separated values for UUID 32 value that
  200. * may be used directly as an argument for @ref BT_DATA_BYTES.
  201. */
  202. #define BT_UUID_32_ENCODE(w32) \
  203. (((w32) >> 0) & 0xFF), \
  204. (((w32) >> 8) & 0xFF), \
  205. (((w32) >> 16) & 0xFF), \
  206. (((w32) >> 24) & 0xFF)
  207. /** @def BT_UUID_STR_LEN
  208. *
  209. * @brief Recommended length of user string buffer for Bluetooth UUID.
  210. *
  211. * @details The recommended length guarantee the output of UUID
  212. * conversion will not lose valuable information about the UUID being
  213. * processed. If the length of the UUID is known the string can be shorter.
  214. */
  215. #define BT_UUID_STR_LEN 37
  216. /** @def BT_UUID_GAP_VAL
  217. * @brief Generic Access UUID value
  218. */
  219. #define BT_UUID_GAP_VAL 0x1800
  220. /** @def BT_UUID_GAP
  221. * @brief Generic Access
  222. */
  223. #define BT_UUID_GAP \
  224. BT_UUID_DECLARE_16(BT_UUID_GAP_VAL)
  225. /** @def BT_UUID_GATT_VAL
  226. * @brief Generic attribute UUID value
  227. */
  228. #define BT_UUID_GATT_VAL 0x1801
  229. /** @def BT_UUID_GATT
  230. * @brief Generic Attribute
  231. */
  232. #define BT_UUID_GATT \
  233. BT_UUID_DECLARE_16(BT_UUID_GATT_VAL)
  234. /** @def BT_UUID_IAS_VAL
  235. * @brief Immediate Alert Service UUID value
  236. */
  237. #define BT_UUID_IAS_VAL 0x1802
  238. /** @def BT_UUID_IAS
  239. * @brief Immediate Alert Service
  240. */
  241. #define BT_UUID_IAS \
  242. BT_UUID_DECLARE_16(BT_UUID_IAS_VAL)
  243. /** @def BT_UUID_LLS_VAL
  244. * @brief Link Loss Service UUID value
  245. */
  246. #define BT_UUID_LLS_VAL 0x1803
  247. /** @def BT_UUID_LLS
  248. * @brief Link Loss Service
  249. */
  250. #define BT_UUID_LLS \
  251. BT_UUID_DECLARE_16(BT_UUID_LLS_VAL)
  252. /** @def BT_UUID_TPS_VAL
  253. * @brief Tx Power Service UUID value
  254. */
  255. #define BT_UUID_TPS_VAL 0x1804
  256. /** @def BT_UUID_TPS
  257. * @brief Tx Power Service
  258. */
  259. #define BT_UUID_TPS \
  260. BT_UUID_DECLARE_16(BT_UUID_TPS_VAL)
  261. /** @def BT_UUID_CTS_VAL
  262. * @brief Current Time Service UUID value
  263. */
  264. #define BT_UUID_CTS_VAL 0x1805
  265. /** @def BT_UUID_CTS
  266. * @brief Current Time Service
  267. */
  268. #define BT_UUID_CTS \
  269. BT_UUID_DECLARE_16(BT_UUID_CTS_VAL)
  270. /** @def BT_UUID_HTS_VAL
  271. * @brief Health Thermometer Service UUID value
  272. */
  273. #define BT_UUID_HTS_VAL 0x1809
  274. /** @def BT_UUID_HTS
  275. * @brief Health Thermometer Service
  276. */
  277. #define BT_UUID_HTS \
  278. BT_UUID_DECLARE_16(BT_UUID_HTS_VAL)
  279. /** @def BT_UUID_DIS_VAL
  280. * @brief Device Information Service UUID value
  281. */
  282. #define BT_UUID_DIS_VAL 0x180a
  283. /** @def BT_UUID_DIS
  284. * @brief Device Information Service
  285. */
  286. #define BT_UUID_DIS \
  287. BT_UUID_DECLARE_16(BT_UUID_DIS_VAL)
  288. /** @def BT_UUID_HRS_VAL
  289. * @brief Heart Rate Service UUID value
  290. */
  291. #define BT_UUID_HRS_VAL 0x180d
  292. /** @def BT_UUID_HRS
  293. * @brief Heart Rate Service
  294. */
  295. #define BT_UUID_HRS \
  296. BT_UUID_DECLARE_16(BT_UUID_HRS_VAL)
  297. /** @def BT_UUID_BAS_VAL
  298. * @brief Battery Service UUID value
  299. */
  300. #define BT_UUID_BAS_VAL 0x180f
  301. /** @def BT_UUID_BAS
  302. * @brief Battery Service
  303. */
  304. #define BT_UUID_BAS \
  305. BT_UUID_DECLARE_16(BT_UUID_BAS_VAL)
  306. /** @def BT_UUID_HIDS_VAL
  307. * @brief HID Service UUID value
  308. */
  309. #define BT_UUID_HIDS_VAL 0x1812
  310. /** @def BT_UUID_HIDS
  311. * @brief HID Service
  312. */
  313. #define BT_UUID_HIDS \
  314. BT_UUID_DECLARE_16(BT_UUID_HIDS_VAL)
  315. /** @def BT_UUID_RSCS_VAL
  316. * @brief Running Speed and Cadence Service UUID value
  317. */
  318. #define BT_UUID_RSCS_VAL 0x1814
  319. /** @def BT_UUID_RSCS
  320. * @brief Running Speed and Cadence Service
  321. */
  322. #define BT_UUID_RSCS \
  323. BT_UUID_DECLARE_16(BT_UUID_RSCS_VAL)
  324. /** @def BT_UUID_CSC_VAL
  325. * @brief Cycling Speed and Cadence Service UUID value
  326. */
  327. #define BT_UUID_CSC_VAL 0x1816
  328. /** @def BT_UUID_CSC
  329. * @brief Cycling Speed and Cadence Service
  330. */
  331. #define BT_UUID_CSC \
  332. BT_UUID_DECLARE_16(BT_UUID_CSC_VAL)
  333. /** @def BT_UUID_ESS_VAL
  334. * @brief Environmental Sensing Service UUID value
  335. */
  336. #define BT_UUID_ESS_VAL 0x181a
  337. /** @def BT_UUID_ESS
  338. * @brief Environmental Sensing Service
  339. */
  340. #define BT_UUID_ESS \
  341. BT_UUID_DECLARE_16(BT_UUID_ESS_VAL)
  342. /** @def BT_UUID_BMS_VAL
  343. * @brief Bond Management Service UUID value
  344. */
  345. #define BT_UUID_BMS_VAL 0x181e
  346. /** @def BT_UUID_BMS
  347. * @brief Bond Management Service
  348. */
  349. #define BT_UUID_BMS \
  350. BT_UUID_DECLARE_16(BT_UUID_BMS_VAL)
  351. /** @def BT_UUID_IPSS_VAL
  352. * @brief IP Support Service UUID value
  353. */
  354. #define BT_UUID_IPSS_VAL 0x1820
  355. /** @def BT_UUID_IPSS
  356. * @brief IP Support Service
  357. */
  358. #define BT_UUID_IPSS \
  359. BT_UUID_DECLARE_16(BT_UUID_IPSS_VAL)
  360. /** @def BT_UUID_HPS_VAL
  361. * @brief HTTP Proxy Service UUID value
  362. */
  363. #define BT_UUID_HPS_VAL 0x1823
  364. /** @def BT_UUID_HPS
  365. * @brief HTTP Proxy Service
  366. */
  367. #define BT_UUID_HPS \
  368. BT_UUID_DECLARE_16(BT_UUID_HPS_VAL)
  369. /** @def BT_UUID_OTS_VAL
  370. * @brief Object Transfer Service UUID value
  371. */
  372. #define BT_UUID_OTS_VAL 0x1825
  373. /** @def BT_UUID_OTS
  374. * @brief Object Transfer Service
  375. */
  376. #define BT_UUID_OTS \
  377. BT_UUID_DECLARE_16(BT_UUID_OTS_VAL)
  378. /** @def BT_UUID_MESH_PROV_VAL
  379. * @brief Mesh Provisioning Service UUID value
  380. */
  381. #define BT_UUID_MESH_PROV_VAL 0x1827
  382. /** @def BT_UUID_MESH_PROV
  383. * @brief Mesh Provisioning Service
  384. */
  385. #define BT_UUID_MESH_PROV \
  386. BT_UUID_DECLARE_16(BT_UUID_MESH_PROV_VAL)
  387. /** @def BT_UUID_MESH_PROXY_VAL
  388. * @brief Mesh Proxy Service UUID value
  389. */
  390. #define BT_UUID_MESH_PROXY_VAL 0x1828
  391. /** @def BT_UUID_MESH_PROXY
  392. * @brief Mesh Proxy Service
  393. */
  394. #define BT_UUID_MESH_PROXY \
  395. BT_UUID_DECLARE_16(BT_UUID_MESH_PROXY_VAL)
  396. /** @def BT_UUID_AICS_VAL
  397. * @brief Audio Input Control Service value
  398. */
  399. #define BT_UUID_AICS_VAL 0x1843
  400. /** @def BT_UUID_AICS
  401. * @brief Audio Input Control Service
  402. */
  403. #define BT_UUID_AICS \
  404. BT_UUID_DECLARE_16(BT_UUID_AICS_VAL)
  405. /** @def BT_UUID_VCS_VAL
  406. * @brief Volume Control Service value
  407. */
  408. #define BT_UUID_VCS_VAL 0x1844
  409. /** @def BT_UUID_VCS
  410. * @brief Volume Control Service
  411. */
  412. #define BT_UUID_VCS \
  413. BT_UUID_DECLARE_16(BT_UUID_VCS_VAL)
  414. /** @def BT_UUID_VOCS_VAL
  415. * @brief Volume Offset Control Service value
  416. */
  417. #define BT_UUID_VOCS_VAL 0x1845
  418. /** @def BT_UUID_VOCS
  419. * @brief Volume Offset Control Service
  420. */
  421. #define BT_UUID_VOCS \
  422. BT_UUID_DECLARE_16(BT_UUID_VOCS_VAL)
  423. /** @def BT_UUID_MICS_VAL
  424. * @brief Microphone Input Control Service value
  425. */
  426. #define BT_UUID_MICS_VAL 0x184D
  427. /** @def BT_UUID_MICS
  428. * @brief Microphone Input Control Service
  429. */
  430. #define BT_UUID_MICS \
  431. BT_UUID_DECLARE_16(BT_UUID_MICS_VAL)
  432. /** @def BT_UUID_GATT_PRIMARY_VAL
  433. * @brief GATT Primary Service UUID value
  434. */
  435. #define BT_UUID_GATT_PRIMARY_VAL 0x2800
  436. /** @def BT_UUID_GATT_PRIMARY
  437. * @brief GATT Primary Service
  438. */
  439. #define BT_UUID_GATT_PRIMARY \
  440. BT_UUID_DECLARE_16(BT_UUID_GATT_PRIMARY_VAL)
  441. /** @def BT_UUID_GATT_SECONDARY_VAL
  442. * @brief GATT Secondary Service UUID value
  443. */
  444. #define BT_UUID_GATT_SECONDARY_VAL 0x2801
  445. /** @def BT_UUID_GATT_SECONDARY
  446. * @brief GATT Secondary Service
  447. */
  448. #define BT_UUID_GATT_SECONDARY \
  449. BT_UUID_DECLARE_16(BT_UUID_GATT_SECONDARY_VAL)
  450. /** @def BT_UUID_GATT_INCLUDE_VAL
  451. * @brief GATT Include Service UUID value
  452. */
  453. #define BT_UUID_GATT_INCLUDE_VAL 0x2802
  454. /** @def BT_UUID_GATT_INCLUDE
  455. * @brief GATT Include Service
  456. */
  457. #define BT_UUID_GATT_INCLUDE \
  458. BT_UUID_DECLARE_16(BT_UUID_GATT_INCLUDE_VAL)
  459. /** @def BT_UUID_GATT_CHRC_VAL
  460. * @brief GATT Characteristic UUID value
  461. */
  462. #define BT_UUID_GATT_CHRC_VAL 0x2803
  463. /** @def BT_UUID_GATT_CHRC
  464. * @brief GATT Characteristic
  465. */
  466. #define BT_UUID_GATT_CHRC \
  467. BT_UUID_DECLARE_16(BT_UUID_GATT_CHRC_VAL)
  468. /** @def BT_UUID_GATT_CEP_VAL
  469. * @brief GATT Characteristic Extended Properties UUID value
  470. */
  471. #define BT_UUID_GATT_CEP_VAL 0x2900
  472. /** @def BT_UUID_GATT_CEP
  473. * @brief GATT Characteristic Extended Properties
  474. */
  475. #define BT_UUID_GATT_CEP \
  476. BT_UUID_DECLARE_16(BT_UUID_GATT_CEP_VAL)
  477. /** @def BT_UUID_GATT_CUD_VAL
  478. * @brief GATT Characteristic User Description UUID value
  479. */
  480. #define BT_UUID_GATT_CUD_VAL 0x2901
  481. /** @def BT_UUID_GATT_CUD
  482. * @brief GATT Characteristic User Description
  483. */
  484. #define BT_UUID_GATT_CUD \
  485. BT_UUID_DECLARE_16(BT_UUID_GATT_CUD_VAL)
  486. /** @def BT_UUID_GATT_CCC_VAL
  487. * @brief GATT Client Characteristic Configuration UUID value
  488. */
  489. #define BT_UUID_GATT_CCC_VAL 0x2902
  490. /** @def BT_UUID_GATT_CCC
  491. * @brief GATT Client Characteristic Configuration
  492. */
  493. #define BT_UUID_GATT_CCC \
  494. BT_UUID_DECLARE_16(BT_UUID_GATT_CCC_VAL)
  495. /** @def BT_UUID_GATT_SCC_VAL
  496. * @brief GATT Server Characteristic Configuration UUID value
  497. */
  498. #define BT_UUID_GATT_SCC_VAL 0x2903
  499. /** @def BT_UUID_GATT_SCC
  500. * @brief GATT Server Characteristic Configuration
  501. */
  502. #define BT_UUID_GATT_SCC \
  503. BT_UUID_DECLARE_16(BT_UUID_GATT_SCC_VAL)
  504. /** @def BT_UUID_GATT_CPF_VAL
  505. * @brief GATT Characteristic Presentation Format UUID value
  506. */
  507. #define BT_UUID_GATT_CPF_VAL 0x2904
  508. /** @def BT_UUID_GATT_CPF
  509. * @brief GATT Characteristic Presentation Format
  510. */
  511. #define BT_UUID_GATT_CPF \
  512. BT_UUID_DECLARE_16(BT_UUID_GATT_CPF_VAL)
  513. /** @def BT_UUID_GATT_CAF_VAL
  514. * @brief GATT Characteristic Aggregated Format UUID value
  515. */
  516. #define BT_UUID_GATT_CAF_VAL 0x2905
  517. /** @def BT_UUID_GATT_CAF
  518. * @brief GATT Characteristic Aggregated Format
  519. */
  520. #define BT_UUID_GATT_CAF \
  521. BT_UUID_DECLARE_16(BT_UUID_GATT_CAF_VAL)
  522. /** @def BT_UUID_VALID_RANGE_VAL
  523. * @brief Valid Range Descriptor UUID value
  524. */
  525. #define BT_UUID_VALID_RANGE_VAL 0x2906
  526. /** @def BT_UUID_VALID_RANGE
  527. * @brief Valid Range Descriptor
  528. */
  529. #define BT_UUID_VALID_RANGE \
  530. BT_UUID_DECLARE_16(BT_UUID_VALID_RANGE_VAL)
  531. /** @def BT_UUID_HIDS_EXT_REPORT_VAL
  532. * @brief HID External Report Descriptor UUID value
  533. */
  534. #define BT_UUID_HIDS_EXT_REPORT_VAL 0x2907
  535. /** @def BT_UUID_HIDS_EXT_REPORT
  536. * @brief HID External Report Descriptor
  537. */
  538. #define BT_UUID_HIDS_EXT_REPORT \
  539. BT_UUID_DECLARE_16(BT_UUID_HIDS_EXT_REPORT_VAL)
  540. /** @def BT_UUID_HIDS_REPORT_REF_VAL
  541. * @brief HID Report Reference Descriptor UUID value
  542. */
  543. #define BT_UUID_HIDS_REPORT_REF_VAL 0x2908
  544. /** @def BT_UUID_HIDS_REPORT_REF
  545. * @brief HID Report Reference Descriptor
  546. */
  547. #define BT_UUID_HIDS_REPORT_REF \
  548. BT_UUID_DECLARE_16(BT_UUID_HIDS_REPORT_REF_VAL)
  549. /** @def BT_UUID_ES_CONFIGURATION_VAL
  550. * @brief Environmental Sensing Configuration Descriptor UUID value
  551. */
  552. #define BT_UUID_ES_CONFIGURATION_VAL 0x290b
  553. /** @def BT_UUID_ES_CONFIGURATION
  554. * @brief Environmental Sensing Configuration Descriptor
  555. */
  556. #define BT_UUID_ES_CONFIGURATION \
  557. BT_UUID_DECLARE_16(BT_UUID_ES_CONFIGURATION_VAL)
  558. /** @def BT_UUID_ES_MEASUREMENT_VAL
  559. * @brief Environmental Sensing Measurement Descriptor UUID value
  560. */
  561. #define BT_UUID_ES_MEASUREMENT_VAL 0x290c
  562. /** @def BT_UUID_ES_MEASUREMENT
  563. * @brief Environmental Sensing Measurement Descriptor
  564. */
  565. #define BT_UUID_ES_MEASUREMENT \
  566. BT_UUID_DECLARE_16(BT_UUID_ES_MEASUREMENT_VAL)
  567. /** @def BT_UUID_ES_TRIGGER_SETTING_VAL
  568. * @brief Environmental Sensing Trigger Setting Descriptor UUID value
  569. */
  570. #define BT_UUID_ES_TRIGGER_SETTING_VAL 0x290d
  571. /** @def BT_UUID_ES_TRIGGER_SETTING
  572. * @brief Environmental Sensing Trigger Setting Descriptor
  573. */
  574. #define BT_UUID_ES_TRIGGER_SETTING \
  575. BT_UUID_DECLARE_16(BT_UUID_ES_TRIGGER_SETTING_VAL)
  576. /** @def BT_UUID_GAP_DEVICE_NAME_VAL
  577. * @brief GAP Characteristic Device Name UUID value
  578. */
  579. #define BT_UUID_GAP_DEVICE_NAME_VAL 0x2a00
  580. /** @def BT_UUID_GAP_DEVICE_NAME
  581. * @brief GAP Characteristic Device Name
  582. */
  583. #define BT_UUID_GAP_DEVICE_NAME \
  584. BT_UUID_DECLARE_16(BT_UUID_GAP_DEVICE_NAME_VAL)
  585. /** @def BT_UUID_GAP_APPEARANCE_VAL
  586. * @brief GAP Characteristic Appearance UUID value
  587. */
  588. #define BT_UUID_GAP_APPEARANCE_VAL 0x2a01
  589. /** @def BT_UUID_GAP_APPEARANCE
  590. * @brief GAP Characteristic Appearance
  591. */
  592. #define BT_UUID_GAP_APPEARANCE \
  593. BT_UUID_DECLARE_16(BT_UUID_GAP_APPEARANCE_VAL)
  594. /** @def BT_UUID_GAP_PPCP_VAL
  595. * @brief GAP Characteristic Peripheral Preferred Connection Parameters UUID
  596. * value
  597. */
  598. #define BT_UUID_GAP_PPCP_VAL 0x2a04
  599. /** @def BT_UUID_GAP_PPCP
  600. * @brief GAP Characteristic Peripheral Preferred Connection Parameters
  601. */
  602. #define BT_UUID_GAP_PPCP \
  603. BT_UUID_DECLARE_16(BT_UUID_GAP_PPCP_VAL)
  604. /** @def BT_UUID_GATT_SC_VAL
  605. * @brief GATT Characteristic Service Changed UUID value
  606. */
  607. #define BT_UUID_GATT_SC_VAL 0x2a05
  608. /** @def BT_UUID_GATT_SC
  609. * @brief GATT Characteristic Service Changed
  610. */
  611. #define BT_UUID_GATT_SC \
  612. BT_UUID_DECLARE_16(BT_UUID_GATT_SC_VAL)
  613. /** @def BT_UUID_ALERT_LEVEL_VAL
  614. * @brief Alert Level UUID value
  615. */
  616. #define BT_UUID_ALERT_LEVEL_VAL 0x2a06
  617. /** @def BT_UUID_ALERT_LEVEL
  618. * @brief Alert Level
  619. */
  620. #define BT_UUID_ALERT_LEVEL \
  621. BT_UUID_DECLARE_16(BT_UUID_ALERT_LEVEL_VAL)
  622. /** @def BT_UUID_TPS_TX_POWER_LEVEL_VAL
  623. * @brief TPS Characteristic Tx Power Level UUID value
  624. */
  625. #define BT_UUID_TPS_TX_POWER_LEVEL_VAL 0x2a07
  626. /** @def BT_UUID_TPS_TX_POWER_LEVEL
  627. * @brief TPS Characteristic Tx Power Level
  628. */
  629. #define BT_UUID_TPS_TX_POWER_LEVEL \
  630. BT_UUID_DECLARE_16(BT_UUID_TPS_TX_POWER_LEVEL_VAL)
  631. /** @def BT_UUID_BAS_BATTERY_LEVEL_VAL
  632. * @brief BAS Characteristic Battery Level UUID value
  633. */
  634. #define BT_UUID_BAS_BATTERY_LEVEL_VAL 0x2a19
  635. /** @def BT_UUID_BAS_BATTERY_LEVEL
  636. * @brief BAS Characteristic Battery Level
  637. */
  638. #define BT_UUID_BAS_BATTERY_LEVEL \
  639. BT_UUID_DECLARE_16(BT_UUID_BAS_BATTERY_LEVEL_VAL)
  640. /** @def BT_UUID_HTS_MEASUREMENT_VAL
  641. * @brief HTS Characteristic Measurement Value UUID value
  642. */
  643. #define BT_UUID_HTS_MEASUREMENT_VAL 0x2a1c
  644. /** @def BT_UUID_HTS_MEASUREMENT
  645. * @brief HTS Characteristic Measurement Value
  646. */
  647. #define BT_UUID_HTS_MEASUREMENT \
  648. BT_UUID_DECLARE_16(BT_UUID_HTS_MEASUREMENT_VAL)
  649. /** @def BT_UUID_HIDS_BOOT_KB_IN_REPORT_VAL
  650. * @brief HID Characteristic Boot Keyboard Input Report UUID value
  651. */
  652. #define BT_UUID_HIDS_BOOT_KB_IN_REPORT_VAL 0x2a22
  653. /** @def BT_UUID_HIDS_BOOT_KB_IN_REPORT
  654. * @brief HID Characteristic Boot Keyboard Input Report
  655. */
  656. #define BT_UUID_HIDS_BOOT_KB_IN_REPORT \
  657. BT_UUID_DECLARE_16(BT_UUID_HIDS_BOOT_KB_IN_REPORT_VAL)
  658. /** @def BT_UUID_DIS_SYSTEM_ID_VAL
  659. * @brief DIS Characteristic System ID UUID value
  660. */
  661. #define BT_UUID_DIS_SYSTEM_ID_VAL 0x2a23
  662. /** @def BT_UUID_DIS_SYSTEM_ID
  663. * @brief DIS Characteristic System ID
  664. */
  665. #define BT_UUID_DIS_SYSTEM_ID \
  666. BT_UUID_DECLARE_16(BT_UUID_DIS_SYSTEM_ID_VAL)
  667. /** @def BT_UUID_DIS_MODEL_NUMBER_VAL
  668. * @brief DIS Characteristic Model Number String UUID value
  669. */
  670. #define BT_UUID_DIS_MODEL_NUMBER_VAL 0x2a24
  671. /** @def BT_UUID_DIS_MODEL_NUMBER
  672. * @brief DIS Characteristic Model Number String
  673. */
  674. #define BT_UUID_DIS_MODEL_NUMBER \
  675. BT_UUID_DECLARE_16(BT_UUID_DIS_MODEL_NUMBER_VAL)
  676. /** @def BT_UUID_DIS_SERIAL_NUMBER_VAL
  677. * @brief DIS Characteristic Serial Number String UUID value
  678. */
  679. #define BT_UUID_DIS_SERIAL_NUMBER_VAL 0x2a25
  680. /** @def BT_UUID_DIS_SERIAL_NUMBER
  681. * @brief DIS Characteristic Serial Number String
  682. */
  683. #define BT_UUID_DIS_SERIAL_NUMBER \
  684. BT_UUID_DECLARE_16(BT_UUID_DIS_SERIAL_NUMBER_VAL)
  685. /** @def BT_UUID_DIS_FIRMWARE_REVISION_VAL
  686. * @brief DIS Characteristic Firmware Revision String UUID value
  687. */
  688. #define BT_UUID_DIS_FIRMWARE_REVISION_VAL 0x2a26
  689. /** @def BT_UUID_DIS_FIRMWARE_REVISION
  690. * @brief DIS Characteristic Firmware Revision String
  691. */
  692. #define BT_UUID_DIS_FIRMWARE_REVISION \
  693. BT_UUID_DECLARE_16(BT_UUID_DIS_FIRMWARE_REVISION_VAL)
  694. /** @def BT_UUID_DIS_HARDWARE_REVISION_VAL
  695. * @brief DIS Characteristic Hardware Revision String UUID value
  696. */
  697. #define BT_UUID_DIS_HARDWARE_REVISION_VAL 0x2a27
  698. /** @def BT_UUID_DIS_HARDWARE_REVISION
  699. * @brief DIS Characteristic Hardware Revision String
  700. */
  701. #define BT_UUID_DIS_HARDWARE_REVISION \
  702. BT_UUID_DECLARE_16(BT_UUID_DIS_HARDWARE_REVISION_VAL)
  703. /** @def BT_UUID_DIS_SOFTWARE_REVISION_VAL
  704. * @brief DIS Characteristic Software Revision String UUID value
  705. */
  706. #define BT_UUID_DIS_SOFTWARE_REVISION_VAL 0x2a28
  707. /** @def BT_UUID_DIS_SOFTWARE_REVISION
  708. * @brief DIS Characteristic Software Revision String
  709. */
  710. #define BT_UUID_DIS_SOFTWARE_REVISION \
  711. BT_UUID_DECLARE_16(BT_UUID_DIS_SOFTWARE_REVISION_VAL)
  712. /** @def BT_UUID_DIS_MANUFACTURER_NAME_VAL
  713. * @brief DIS Characteristic Manufacturer Name String UUID Value
  714. */
  715. #define BT_UUID_DIS_MANUFACTURER_NAME_VAL 0x2a29
  716. /** @def BT_UUID_DIS_MANUFACTURER_NAME
  717. * @brief DIS Characteristic Manufacturer Name String
  718. */
  719. #define BT_UUID_DIS_MANUFACTURER_NAME \
  720. BT_UUID_DECLARE_16(BT_UUID_DIS_MANUFACTURER_NAME_VAL)
  721. /** @def BT_UUID_DIS_PNP_ID_VAL
  722. * @brief DIS Characteristic PnP ID UUID value
  723. */
  724. #define BT_UUID_DIS_PNP_ID_VAL 0x2a50
  725. /** @def BT_UUID_DIS_PNP_ID
  726. * @brief DIS Characteristic PnP ID
  727. */
  728. #define BT_UUID_DIS_PNP_ID \
  729. BT_UUID_DECLARE_16(BT_UUID_DIS_PNP_ID_VAL)
  730. /** @def BT_UUID_CTS_CURRENT_TIME_VAL
  731. * @brief CTS Characteristic Current Time UUID value
  732. */
  733. #define BT_UUID_CTS_CURRENT_TIME_VAL 0x2a2b
  734. /** @def BT_UUID_CTS_CURRENT_TIME
  735. * @brief CTS Characteristic Current Time
  736. */
  737. #define BT_UUID_CTS_CURRENT_TIME \
  738. BT_UUID_DECLARE_16(BT_UUID_CTS_CURRENT_TIME_VAL)
  739. /** @def BT_UUID_MAGN_DECLINATION_VAL
  740. * @brief Magnetic Declination Characteristic UUID value
  741. */
  742. #define BT_UUID_MAGN_DECLINATION_VAL 0x2a2c
  743. /** @def BT_UUID_MAGN_DECLINATION
  744. * @brief Magnetic Declination Characteristic
  745. */
  746. #define BT_UUID_MAGN_DECLINATION \
  747. BT_UUID_DECLARE_16(BT_UUID_MAGN_DECLINATION_VAL)
  748. /** @def BT_UUID_HIDS_BOOT_KB_OUT_REPORT_VAL
  749. * @brief HID Boot Keyboard Output Report Characteristic UUID value
  750. */
  751. #define BT_UUID_HIDS_BOOT_KB_OUT_REPORT_VAL 0x2a32
  752. /** @def BT_UUID_HIDS_BOOT_KB_OUT_REPORT
  753. * @brief HID Boot Keyboard Output Report Characteristic
  754. */
  755. #define BT_UUID_HIDS_BOOT_KB_OUT_REPORT \
  756. BT_UUID_DECLARE_16(BT_UUID_HIDS_BOOT_KB_OUT_REPORT_VAL)
  757. /** @def BT_UUID_HIDS_BOOT_MOUSE_IN_REPORT_VAL
  758. * @brief HID Boot Mouse Input Report Characteristic UUID value
  759. */
  760. #define BT_UUID_HIDS_BOOT_MOUSE_IN_REPORT_VAL 0x2a33
  761. /** @def BT_UUID_HIDS_BOOT_MOUSE_IN_REPORT
  762. * @brief HID Boot Mouse Input Report Characteristic
  763. */
  764. #define BT_UUID_HIDS_BOOT_MOUSE_IN_REPORT \
  765. BT_UUID_DECLARE_16(BT_UUID_HIDS_BOOT_MOUSE_IN_REPORT_VAL)
  766. /** @def BT_UUID_HRS_MEASUREMENT_VAL
  767. * @brief HRS Characteristic Measurement Interval UUID value
  768. */
  769. #define BT_UUID_HRS_MEASUREMENT_VAL 0x2a37
  770. /** @def BT_UUID_HRS_MEASUREMENT
  771. * @brief HRS Characteristic Measurement Interval
  772. */
  773. #define BT_UUID_HRS_MEASUREMENT \
  774. BT_UUID_DECLARE_16(BT_UUID_HRS_MEASUREMENT_VAL)
  775. /** @def BT_UUID_HRS_BODY_SENSOR
  776. * @brief HRS Characteristic Body Sensor Location
  777. */
  778. #define BT_UUID_HRS_BODY_SENSOR_VAL 0x2a38
  779. /** @def BT_UUID_HRS_CONTROL_POINT
  780. * @brief HRS Characteristic Control Point
  781. */
  782. #define BT_UUID_HRS_BODY_SENSOR \
  783. BT_UUID_DECLARE_16(BT_UUID_HRS_BODY_SENSOR_VAL)
  784. /** @def BT_UUID_HRS_CONTROL_POINT_VAL
  785. * @brief HRS Characteristic Control Point UUID value
  786. */
  787. #define BT_UUID_HRS_CONTROL_POINT_VAL 0x2a39
  788. /** @def BT_UUID_HRS_CONTROL_POINT
  789. * @brief HRS Characteristic Control Point
  790. */
  791. #define BT_UUID_HRS_CONTROL_POINT \
  792. BT_UUID_DECLARE_16(BT_UUID_HRS_CONTROL_POINT_VAL)
  793. /** @def BT_UUID_HIDS_INFO_VAL
  794. * @brief HID Information Characteristic UUID value
  795. */
  796. #define BT_UUID_HIDS_INFO_VAL 0x2a4a
  797. /** @def BT_UUID_HIDS_INFO
  798. * @brief HID Information Characteristic
  799. */
  800. #define BT_UUID_HIDS_INFO \
  801. BT_UUID_DECLARE_16(BT_UUID_HIDS_INFO_VAL)
  802. /** @def BT_UUID_HIDS_REPORT_MAP_VAL
  803. * @brief HID Report Map Characteristic UUID value
  804. */
  805. #define BT_UUID_HIDS_REPORT_MAP_VAL 0x2a4b
  806. /** @def BT_UUID_HIDS_REPORT_MAP
  807. * @brief HID Report Map Characteristic
  808. */
  809. #define BT_UUID_HIDS_REPORT_MAP \
  810. BT_UUID_DECLARE_16(BT_UUID_HIDS_REPORT_MAP_VAL)
  811. /** @def BT_UUID_HIDS_CTRL_POINT_VAL
  812. * @brief HID Control Point Characteristic UUID value
  813. */
  814. #define BT_UUID_HIDS_CTRL_POINT_VAL 0x2a4c
  815. /** @def BT_UUID_HIDS_CTRL_POINT
  816. * @brief HID Control Point Characteristic
  817. */
  818. #define BT_UUID_HIDS_CTRL_POINT \
  819. BT_UUID_DECLARE_16(BT_UUID_HIDS_CTRL_POINT_VAL)
  820. /** @def BT_UUID_HIDS_REPORT_VAL
  821. * @brief HID Report Characteristic UUID value
  822. */
  823. #define BT_UUID_HIDS_REPORT_VAL 0x2a4d
  824. /** @def BT_UUID_HIDS_REPORT
  825. * @brief HID Report Characteristic
  826. */
  827. #define BT_UUID_HIDS_REPORT \
  828. BT_UUID_DECLARE_16(BT_UUID_HIDS_REPORT_VAL)
  829. /** @def BT_UUID_HIDS_PROTOCOL_MODE_VAL
  830. * @brief HID Protocol Mode Characteristic UUID value
  831. */
  832. #define BT_UUID_HIDS_PROTOCOL_MODE_VAL 0x2a4e
  833. /** @def BT_UUID_HIDS_PROTOCOL_MODE
  834. * @brief HID Protocol Mode Characteristic
  835. */
  836. #define BT_UUID_HIDS_PROTOCOL_MODE \
  837. BT_UUID_DECLARE_16(BT_UUID_HIDS_PROTOCOL_MODE_VAL)
  838. /** @def BT_UUID_RSC_MEASUREMENT_VAL
  839. * @brief RSC Measurement Characteristic UUID value
  840. */
  841. #define BT_UUID_RSC_MEASUREMENT_VAL 0x2a53
  842. /** @def BT_UUID_RSC_MEASUREMENT
  843. * @brief RSC Measurement Characteristic
  844. */
  845. #define BT_UUID_RSC_MEASUREMENT \
  846. BT_UUID_DECLARE_16(BT_UUID_RSC_MEASUREMENT_VAL)
  847. /** @def BT_UUID_RSC_FEATURE_VAL
  848. * @brief RSC Feature Characteristic UUID value
  849. */
  850. #define BT_UUID_RSC_FEATURE_VAL 0x2a54
  851. /** @def BT_UUID_RSC_FEATURE
  852. * @brief RSC Feature Characteristic
  853. */
  854. #define BT_UUID_RSC_FEATURE \
  855. BT_UUID_DECLARE_16(BT_UUID_RSC_FEATURE_VAL)
  856. /** @def BT_UUID_CSC_MEASUREMENT_VAL
  857. * @brief CSC Measurement Characteristic UUID value
  858. */
  859. #define BT_UUID_CSC_MEASUREMENT_VAL 0x2a5b
  860. /** @def BT_UUID_CSC_MEASUREMENT
  861. * @brief CSC Measurement Characteristic
  862. */
  863. #define BT_UUID_CSC_MEASUREMENT \
  864. BT_UUID_DECLARE_16(BT_UUID_CSC_MEASUREMENT_VAL)
  865. /** @def BT_UUID_CSC_FEATURE_VAL
  866. * @brief CSC Feature Characteristic UUID value
  867. */
  868. #define BT_UUID_CSC_FEATURE_VAL 0x2a5c
  869. /** @def BT_UUID_CSC_FEATURE
  870. * @brief CSC Feature Characteristic
  871. */
  872. #define BT_UUID_CSC_FEATURE \
  873. BT_UUID_DECLARE_16(BT_UUID_CSC_FEATURE_VAL)
  874. /** @def BT_UUID_SENSOR_LOCATION_VAL
  875. * @brief Sensor Location Characteristic UUID value
  876. */
  877. #define BT_UUID_SENSOR_LOCATION_VAL 0x2a5d
  878. /** @def BT_UUID_SENSOR_LOCATION
  879. * @brief Sensor Location Characteristic
  880. */
  881. #define BT_UUID_SENSOR_LOCATION \
  882. BT_UUID_DECLARE_16(BT_UUID_SENSOR_LOCATION_VAL)
  883. /** @def BT_UUID_SC_CONTROL_POINT_VAL
  884. * @brief SC Control Point Characteristic UUID value
  885. */
  886. #define BT_UUID_SC_CONTROL_POINT_VAL 0x2a55
  887. /** @def BT_UUID_SC_CONTROL_POINT
  888. * @brief SC Control Point Characteristic
  889. */
  890. #define BT_UUID_SC_CONTROL_POINT \
  891. BT_UUID_DECLARE_16(BT_UUID_SC_CONTROL_POINT_VAL)
  892. /** @def BT_UUID_ELEVATION_VAL
  893. * @brief Elevation Characteristic UUID value
  894. */
  895. #define BT_UUID_ELEVATION_VAL 0x2a6c
  896. /** @def BT_UUID_ELEVATION
  897. * @brief Elevation Characteristic
  898. */
  899. #define BT_UUID_ELEVATION \
  900. BT_UUID_DECLARE_16(BT_UUID_ELEVATION_VAL)
  901. /** @def BT_UUID_PRESSURE_VAL
  902. * @brief Pressure Characteristic UUID value
  903. */
  904. #define BT_UUID_PRESSURE_VAL 0x2a6d
  905. /** @def BT_UUID_PRESSURE
  906. * @brief Pressure Characteristic
  907. */
  908. #define BT_UUID_PRESSURE \
  909. BT_UUID_DECLARE_16(BT_UUID_PRESSURE_VAL)
  910. /** @def BT_UUID_TEMPERATURE_VAL
  911. * @brief Temperature Characteristic UUID value
  912. */
  913. #define BT_UUID_TEMPERATURE_VAL 0x2a6e
  914. /** @def BT_UUID_TEMPERATURE
  915. * @brief Temperature Characteristic
  916. */
  917. #define BT_UUID_TEMPERATURE \
  918. BT_UUID_DECLARE_16(BT_UUID_TEMPERATURE_VAL)
  919. /** @def BT_UUID_HUMIDITY_VAL
  920. * @brief Humidity Characteristic UUID value
  921. */
  922. #define BT_UUID_HUMIDITY_VAL 0x2a6f
  923. /** @def BT_UUID_HUMIDITY
  924. * @brief Humidity Characteristic
  925. */
  926. #define BT_UUID_HUMIDITY \
  927. BT_UUID_DECLARE_16(BT_UUID_HUMIDITY_VAL)
  928. /** @def BT_UUID_TRUE_WIND_SPEED_VAL
  929. * @brief True Wind Speed Characteristic UUID value
  930. */
  931. #define BT_UUID_TRUE_WIND_SPEED_VAL 0x2a70
  932. /** @def BT_UUID_TRUE_WIND_SPEED
  933. * @brief True Wind Speed Characteristic
  934. */
  935. #define BT_UUID_TRUE_WIND_SPEED \
  936. BT_UUID_DECLARE_16(BT_UUID_TRUE_WIND_SPEED_VAL)
  937. /** @def BT_UUID_TRUE_WIND_DIR_VAL
  938. * @brief True Wind Direction Characteristic UUID value
  939. */
  940. #define BT_UUID_TRUE_WIND_DIR_VAL 0x2a71
  941. /** @def BT_UUID_TRUE_WIND_DIR
  942. * @brief True Wind Direction Characteristic
  943. */
  944. #define BT_UUID_TRUE_WIND_DIR \
  945. BT_UUID_DECLARE_16(BT_UUID_TRUE_WIND_DIR_VAL)
  946. /** @def BT_UUID_APPARENT_WIND_SPEED_VAL
  947. * @brief Apparent Wind Speed Characteristic UUID value
  948. */
  949. #define BT_UUID_APPARENT_WIND_SPEED_VAL 0x2a72
  950. /** @def BT_UUID_APPARENT_WIND_SPEED
  951. * @brief Apparent Wind Speed Characteristic
  952. */
  953. #define BT_UUID_APPARENT_WIND_SPEED \
  954. BT_UUID_DECLARE_16(BT_UUID_APPARENT_WIND_SPEED_VAL)
  955. /** @def BT_UUID_APPARENT_WIND_DIR_VAL
  956. * @brief Apparent Wind Direction Characteristic UUID value
  957. */
  958. #define BT_UUID_APPARENT_WIND_DIR_VAL 0x2a73
  959. /** @def BT_UUID_APPARENT_WIND_DIR
  960. * @brief Apparent Wind Direction Characteristic
  961. */
  962. #define BT_UUID_APPARENT_WIND_DIR \
  963. BT_UUID_DECLARE_16(BT_UUID_APPARENT_WIND_DIR_VAL)
  964. /** @def BT_UUID_GUST_FACTOR_VAL
  965. * @brief Gust Factor Characteristic UUID value
  966. */
  967. #define BT_UUID_GUST_FACTOR_VAL 0x2a74
  968. /** @def BT_UUID_GUST_FACTOR
  969. * @brief Gust Factor Characteristic
  970. */
  971. #define BT_UUID_GUST_FACTOR \
  972. BT_UUID_DECLARE_16(BT_UUID_GUST_FACTOR_VAL)
  973. /** @def BT_UUID_POLLEN_CONCENTRATION_VAL
  974. * @brief Pollen Concentration Characteristic UUID value
  975. */
  976. #define BT_UUID_POLLEN_CONCENTRATION_VAL 0x2a75
  977. /** @def BT_UUID_POLLEN_CONCENTRATION
  978. * @brief Pollen Concentration Characteristic
  979. */
  980. #define BT_UUID_POLLEN_CONCENTRATION \
  981. BT_UUID_DECLARE_16(BT_UUID_POLLEN_CONCENTRATION_VAL)
  982. /** @def BT_UUID_UV_INDEX_VAL
  983. * @brief UV Index Characteristic UUID value
  984. */
  985. #define BT_UUID_UV_INDEX_VAL 0x2a76
  986. /** @def BT_UUID_UV_INDEX
  987. * @brief UV Index Characteristic
  988. */
  989. #define BT_UUID_UV_INDEX \
  990. BT_UUID_DECLARE_16(BT_UUID_UV_INDEX_VAL)
  991. /** @def BT_UUID_IRRADIANCE_VAL
  992. * @brief Irradiance Characteristic UUID value
  993. */
  994. #define BT_UUID_IRRADIANCE_VAL 0x2a77
  995. /** @def BT_UUID_IRRADIANCE
  996. * @brief Irradiance Characteristic
  997. */
  998. #define BT_UUID_IRRADIANCE \
  999. BT_UUID_DECLARE_16(BT_UUID_IRRADIANCE_VAL)
  1000. /** @def BT_UUID_RAINFALL_VAL
  1001. * @brief Rainfall Characteristic UUID value
  1002. */
  1003. #define BT_UUID_RAINFALL_VAL 0x2a78
  1004. /** @def BT_UUID_RAINFALL
  1005. * @brief Rainfall Characteristic
  1006. */
  1007. #define BT_UUID_RAINFALL \
  1008. BT_UUID_DECLARE_16(BT_UUID_RAINFALL_VAL)
  1009. /** @def BT_UUID_WIND_CHILL_VAL
  1010. * @brief Wind Chill Characteristic UUID value
  1011. */
  1012. #define BT_UUID_WIND_CHILL_VAL 0x2a79
  1013. /** @def BT_UUID_WIND_CHILL
  1014. * @brief Wind Chill Characteristic
  1015. */
  1016. #define BT_UUID_WIND_CHILL \
  1017. BT_UUID_DECLARE_16(BT_UUID_WIND_CHILL_VAL)
  1018. /** @def BT_UUID_HEAT_INDEX_VAL
  1019. * @brief Heat Index Characteristic UUID value
  1020. */
  1021. #define BT_UUID_HEAT_INDEX_VAL 0x2a7a
  1022. /** @def BT_UUID_HEAT_INDEX
  1023. * @brief Heat Index Characteristic
  1024. */
  1025. #define BT_UUID_HEAT_INDEX \
  1026. BT_UUID_DECLARE_16(BT_UUID_HEAT_INDEX_VAL)
  1027. /** @def BT_UUID_DEW_POINT_VAL
  1028. * @brief Dew Point Characteristic UUID value
  1029. */
  1030. #define BT_UUID_DEW_POINT_VAL 0x2a7b
  1031. /** @def BT_UUID_DEW_POINT
  1032. * @brief Dew Point Characteristic
  1033. */
  1034. #define BT_UUID_DEW_POINT \
  1035. BT_UUID_DECLARE_16(BT_UUID_DEW_POINT_VAL)
  1036. /** @def BT_UUID_DESC_VALUE_CHANGED_VAL
  1037. * @brief Descriptor Value Changed Characteristic UUID value
  1038. */
  1039. #define BT_UUID_DESC_VALUE_CHANGED_VAL 0x2a7d
  1040. /** @def BT_UUID_DESC_VALUE_CHANGED
  1041. * @brief Descriptor Value Changed Characteristic
  1042. */
  1043. #define BT_UUID_DESC_VALUE_CHANGED \
  1044. BT_UUID_DECLARE_16(BT_UUID_DESC_VALUE_CHANGED_VAL)
  1045. /** @def BT_UUID_MAGN_FLUX_DENSITY_2D_VAL
  1046. * @brief Magnetic Flux Density - 2D Characteristic UUID value
  1047. */
  1048. #define BT_UUID_MAGN_FLUX_DENSITY_2D_VAL 0x2aa0
  1049. /** @def BT_UUID_MAGN_FLUX_DENSITY_2D
  1050. * @brief Magnetic Flux Density - 2D Characteristic
  1051. */
  1052. #define BT_UUID_MAGN_FLUX_DENSITY_2D \
  1053. BT_UUID_DECLARE_16(BT_UUID_MAGN_FLUX_DENSITY_2D_VAL)
  1054. /** @def BT_UUID_MAGN_FLUX_DENSITY_3D_VAL
  1055. * @brief Magnetic Flux Density - 3D Characteristic UUID value
  1056. */
  1057. #define BT_UUID_MAGN_FLUX_DENSITY_3D_VAL 0x2aa1
  1058. /** @def BT_UUID_MAGN_FLUX_DENSITY_3D
  1059. * @brief Magnetic Flux Density - 3D Characteristic
  1060. */
  1061. #define BT_UUID_MAGN_FLUX_DENSITY_3D \
  1062. BT_UUID_DECLARE_16(BT_UUID_MAGN_FLUX_DENSITY_3D_VAL)
  1063. /** @def BT_UUID_BAR_PRESSURE_TREND_VAL
  1064. * @brief Barometric Pressure Trend Characteristic UUID value
  1065. */
  1066. #define BT_UUID_BAR_PRESSURE_TREND_VAL 0x2aa3
  1067. /** @def BT_UUID_BAR_PRESSURE_TREND
  1068. * @brief Barometric Pressure Trend Characteristic
  1069. */
  1070. #define BT_UUID_BAR_PRESSURE_TREND \
  1071. BT_UUID_DECLARE_16(BT_UUID_BAR_PRESSURE_TREND_VAL)
  1072. /** @def BT_UUID_BMS_CONTROL_POINT_VAL
  1073. * @brief Bond Management Control Point UUID value
  1074. */
  1075. #define BT_UUID_BMS_CONTROL_POINT_VAL 0x2aa4
  1076. /** @def BT_UUID_BMS_CONTROL_POINT
  1077. * @brief Bond Management Control Point
  1078. */
  1079. #define BT_UUID_BMS_CONTROL_POINT \
  1080. BT_UUID_DECLARE_16(BT_UUID_BMS_CONTROL_POINT_VAL)
  1081. /** @def BT_UUID_BMS_FEATURE_VAL
  1082. * @brief Bond Management Feature UUID value
  1083. */
  1084. #define BT_UUID_BMS_FEATURE_VAL 0x2aa5
  1085. /** @def BT_UUID_BMS_FEATURE
  1086. * @brief Bond Management Feature
  1087. */
  1088. #define BT_UUID_BMS_FEATURE \
  1089. BT_UUID_DECLARE_16(BT_UUID_BMS_FEATURE_VAL)
  1090. /** @def BT_UUID_CENTRAL_ADDR_RES_VAL
  1091. * @brief Central Address Resolution Characteristic UUID value
  1092. */
  1093. #define BT_UUID_CENTRAL_ADDR_RES_VAL 0x2aa6
  1094. /** @def BT_UUID_CENTRAL_ADDR_RES
  1095. * @brief Central Address Resolution Characteristic
  1096. */
  1097. #define BT_UUID_CENTRAL_ADDR_RES \
  1098. BT_UUID_DECLARE_16(BT_UUID_CENTRAL_ADDR_RES_VAL)
  1099. /** @def BT_UUID_URI_VAL
  1100. * @brief URI UUID value
  1101. */
  1102. #define BT_UUID_URI_VAL 0x2ab6
  1103. /** @def BT_UUID_URI
  1104. * @brief URI
  1105. */
  1106. #define BT_UUID_URI \
  1107. BT_UUID_DECLARE_16(BT_UUID_URI_VAL)
  1108. /** @def BT_UUID_HTTP_HEADERS_VAL
  1109. * @brief HTTP Headers UUID value
  1110. */
  1111. #define BT_UUID_HTTP_HEADERS_VAL 0x2ab7
  1112. /** @def BT_UUID_HTTP_HEADERS
  1113. * @brief HTTP Headers
  1114. */
  1115. #define BT_UUID_HTTP_HEADERS \
  1116. BT_UUID_DECLARE_16(BT_UUID_HTTP_HEADERS_VAL)
  1117. /** @def BT_UUID_HTTP_STATUS_CODE_VAL
  1118. * @brief HTTP Status Code UUID value
  1119. */
  1120. #define BT_UUID_HTTP_STATUS_CODE_VAL 0x2ab8
  1121. /** @def BT_UUID_HTTP_STATUS_CODE
  1122. * @brief HTTP Status Code
  1123. */
  1124. #define BT_UUID_HTTP_STATUS_CODE \
  1125. BT_UUID_DECLARE_16(BT_UUID_HTTP_STATUS_CODE_VAL)
  1126. /** @def BT_UUID_HTTP_ENTITY_BODY_VAL
  1127. * @brief HTTP Entity Body UUID value
  1128. */
  1129. #define BT_UUID_HTTP_ENTITY_BODY_VAL 0x2ab9
  1130. /** @def BT_UUID_HTTP_ENTITY_BODY
  1131. * @brief HTTP Entity Body
  1132. */
  1133. #define BT_UUID_HTTP_ENTITY_BODY \
  1134. BT_UUID_DECLARE_16(BT_UUID_HTTP_ENTITY_BODY_VAL)
  1135. /** @def BT_UUID_HTTP_CONTROL_POINT_VAL
  1136. * @brief HTTP Control Point UUID value
  1137. */
  1138. #define BT_UUID_HTTP_CONTROL_POINT_VAL 0x2aba
  1139. /** @def BT_UUID_HTTP_CONTROL_POINT
  1140. * @brief HTTP Control Point
  1141. */
  1142. #define BT_UUID_HTTP_CONTROL_POINT \
  1143. BT_UUID_DECLARE_16(BT_UUID_HTTP_CONTROL_POINT_VAL)
  1144. /** @def BT_UUID_HTTPS_SECURITY_VAL
  1145. * @brief HTTPS Security UUID value
  1146. */
  1147. #define BT_UUID_HTTPS_SECURITY_VAL 0x2abb
  1148. /** @def BT_UUID_HTTPS_SECURITY
  1149. * @brief HTTPS Security
  1150. */
  1151. #define BT_UUID_HTTPS_SECURITY \
  1152. BT_UUID_DECLARE_16(BT_UUID_HTTPS_SECURITY_VAL)
  1153. /** @def BT_UUID_OTS_FEATURE_VAL
  1154. * @brief OTS Feature Characteristic UUID value
  1155. */
  1156. #define BT_UUID_OTS_FEATURE_VAL 0x2abd
  1157. /** @def BT_UUID_OTS_FEATURE
  1158. * @brief OTS Feature Characteristic
  1159. */
  1160. #define BT_UUID_OTS_FEATURE \
  1161. BT_UUID_DECLARE_16(BT_UUID_OTS_FEATURE_VAL)
  1162. /** @def BT_UUID_OTS_NAME_VAL
  1163. * @brief OTS Object Name Characteristic UUID value
  1164. */
  1165. #define BT_UUID_OTS_NAME_VAL 0x2abe
  1166. /** @def BT_UUID_OTS_NAME
  1167. * @brief OTS Object Name Characteristic
  1168. */
  1169. #define BT_UUID_OTS_NAME \
  1170. BT_UUID_DECLARE_16(BT_UUID_OTS_NAME_VAL)
  1171. /** @def BT_UUID_OTS_TYPE_VAL
  1172. * @brief OTS Object Type Characteristic UUID value
  1173. */
  1174. #define BT_UUID_OTS_TYPE_VAL 0x2abf
  1175. /** @def BT_UUID_OTS_TYPE
  1176. * @brief OTS Object Type Characteristic
  1177. */
  1178. #define BT_UUID_OTS_TYPE \
  1179. BT_UUID_DECLARE_16(BT_UUID_OTS_TYPE_VAL)
  1180. /** @def BT_UUID_OTS_SIZE_VAL
  1181. * @brief OTS Object Size Characteristic UUID value
  1182. */
  1183. #define BT_UUID_OTS_SIZE_VAL 0x2ac0
  1184. /** @def BT_UUID_OTS_SIZE
  1185. * @brief OTS Object Size Characteristic
  1186. */
  1187. #define BT_UUID_OTS_SIZE \
  1188. BT_UUID_DECLARE_16(BT_UUID_OTS_SIZE_VAL)
  1189. /** @def BT_UUID_OTS_FIRST_CREATED_VAL
  1190. * @brief OTS Object First-Created Characteristic UUID value
  1191. */
  1192. #define BT_UUID_OTS_FIRST_CREATED_VAL 0x2ac1
  1193. /** @def BT_UUID_OTS_FIRST_CREATED
  1194. * @brief OTS Object First-Created Characteristic
  1195. */
  1196. #define BT_UUID_OTS_FIRST_CREATED \
  1197. BT_UUID_DECLARE_16(BT_UUID_OTS_FIRST_CREATED_VAL)
  1198. /** @def BT_UUID_OTS_LAST_MODIFIED_VAL
  1199. * @brief OTS Object Last-Modified Characteristic UUI value
  1200. */
  1201. #define BT_UUID_OTS_LAST_MODIFIED_VAL 0x2ac2
  1202. /** @def BT_UUID_OTS_LAST_MODIFIED
  1203. * @brief OTS Object Last-Modified Characteristic
  1204. */
  1205. #define BT_UUID_OTS_LAST_MODIFIED \
  1206. BT_UUID_DECLARE_16(BT_UUID_OTS_LAST_MODIFIED_VAL)
  1207. /** @def BT_UUID_OTS_ID_VAL
  1208. * @brief OTS Object ID Characteristic UUID value
  1209. */
  1210. #define BT_UUID_OTS_ID_VAL 0x2ac3
  1211. /** @def BT_UUID_OTS_ID
  1212. * @brief OTS Object ID Characteristic
  1213. */
  1214. #define BT_UUID_OTS_ID \
  1215. BT_UUID_DECLARE_16(BT_UUID_OTS_ID_VAL)
  1216. /** @def BT_UUID_OTS_PROPERTIES_VAL
  1217. * @brief OTS Object Properties Characteristic UUID value
  1218. */
  1219. #define BT_UUID_OTS_PROPERTIES_VAL 0x2ac4
  1220. /** @def BT_UUID_OTS_PROPERTIES
  1221. * @brief OTS Object Properties Characteristic
  1222. */
  1223. #define BT_UUID_OTS_PROPERTIES \
  1224. BT_UUID_DECLARE_16(BT_UUID_OTS_PROPERTIES_VAL)
  1225. /** @def BT_UUID_OTS_ACTION_CP_VAL
  1226. * @brief OTS Object Action Control Point Characteristic UUID value
  1227. */
  1228. #define BT_UUID_OTS_ACTION_CP_VAL 0x2ac5
  1229. /** @def BT_UUID_OTS_ACTION_CP
  1230. * @brief OTS Object Action Control Point Characteristic
  1231. */
  1232. #define BT_UUID_OTS_ACTION_CP \
  1233. BT_UUID_DECLARE_16(BT_UUID_OTS_ACTION_CP_VAL)
  1234. /** @def BT_UUID_OTS_LIST_CP_VAL
  1235. * @brief OTS Object List Control Point Characteristic UUID value
  1236. */
  1237. #define BT_UUID_OTS_LIST_CP_VAL 0x2ac6
  1238. /** @def BT_UUID_OTS_LIST_CP
  1239. * @brief OTS Object List Control Point Characteristic
  1240. */
  1241. #define BT_UUID_OTS_LIST_CP \
  1242. BT_UUID_DECLARE_16(BT_UUID_OTS_LIST_CP_VAL)
  1243. /** @def BT_UUID_OTS_LIST_FILTER_VAL
  1244. * @brief OTS Object List Filter Characteristic UUID value
  1245. */
  1246. #define BT_UUID_OTS_LIST_FILTER_VAL 0x2ac7
  1247. /** @def BT_UUID_OTS_LIST_FILTER
  1248. * @brief OTS Object List Filter Characteristic
  1249. */
  1250. #define BT_UUID_OTS_LIST_FILTER \
  1251. BT_UUID_DECLARE_16(BT_UUID_OTS_LIST_FILTER_VAL)
  1252. /** @def BT_UUID_OTS_CHANGED_VAL
  1253. * @brief OTS Object Changed Characteristic UUID value
  1254. */
  1255. #define BT_UUID_OTS_CHANGED_VAL 0x2ac8
  1256. /** @def BT_UUID_OTS_CHANGED
  1257. * @brief OTS Object Changed Characteristic
  1258. */
  1259. #define BT_UUID_OTS_CHANGED \
  1260. BT_UUID_DECLARE_16(BT_UUID_OTS_CHANGED_VAL)
  1261. /** @def BT_UUID_OTS_TYPE_UNSPECIFIED_VAL
  1262. * @brief OTS Unspecified Object Type UUID value
  1263. */
  1264. #define BT_UUID_OTS_TYPE_UNSPECIFIED_VAL 0x2aca
  1265. /** @def BT_UUID_OTS_TYPE_UNSPECIFIED
  1266. * @brief OTS Unspecified Object Type
  1267. */
  1268. #define BT_UUID_OTS_TYPE_UNSPECIFIED \
  1269. BT_UUID_DECLARE_16(BT_UUID_OTS_TYPE_UNSPECIFIED_VAL)
  1270. /** @def BT_UUID_OTS_DIRECTORY_LISTING_VAL
  1271. * @brief OTS Directory Listing UUID value
  1272. */
  1273. #define BT_UUID_OTS_DIRECTORY_LISTING_VAL 0x2acb
  1274. /** @def BT_UUID_OTS_DIRECTORY_LISTING
  1275. * @brief OTS Directory Listing
  1276. */
  1277. #define BT_UUID_OTS_DIRECTORY_LISTING \
  1278. BT_UUID_DECLARE_16(BT_UUID_OTS_DIRECTORY_LISTING_VAL)
  1279. /** @def BT_UUID_MESH_PROV_DATA_IN_VAL
  1280. * @brief Mesh Provisioning Data In UUID value
  1281. */
  1282. #define BT_UUID_MESH_PROV_DATA_IN_VAL 0x2adb
  1283. /** @def BT_UUID_MESH_PROV_DATA_IN
  1284. * @brief Mesh Provisioning Data In
  1285. */
  1286. #define BT_UUID_MESH_PROV_DATA_IN \
  1287. BT_UUID_DECLARE_16(BT_UUID_MESH_PROV_DATA_IN_VAL)
  1288. /** @def BT_UUID_MESH_PROV_DATA_OUT_VAL
  1289. * @brief Mesh Provisioning Data Out UUID value
  1290. */
  1291. #define BT_UUID_MESH_PROV_DATA_OUT_VAL 0x2adc
  1292. /** @def BT_UUID_MESH_PROV_DATA_OUT
  1293. * @brief Mesh Provisioning Data Out
  1294. */
  1295. #define BT_UUID_MESH_PROV_DATA_OUT \
  1296. BT_UUID_DECLARE_16(BT_UUID_MESH_PROV_DATA_OUT_VAL)
  1297. /** @def BT_UUID_MESH_PROXY_DATA_IN_VAL
  1298. * @brief Mesh Proxy Data In UUID value
  1299. */
  1300. #define BT_UUID_MESH_PROXY_DATA_IN_VAL 0x2add
  1301. /** @def BT_UUID_MESH_PROXY_DATA_IN
  1302. * @brief Mesh Proxy Data In
  1303. */
  1304. #define BT_UUID_MESH_PROXY_DATA_IN \
  1305. BT_UUID_DECLARE_16(BT_UUID_MESH_PROXY_DATA_IN_VAL)
  1306. /** @def BT_UUID_MESH_PROXY_DATA_OUT_VAL
  1307. * @brief Mesh Proxy Data Out UUID value
  1308. */
  1309. #define BT_UUID_MESH_PROXY_DATA_OUT_VAL 0x2ade
  1310. /** @def BT_UUID_MESH_PROXY_DATA_OUT
  1311. * @brief Mesh Proxy Data Out
  1312. */
  1313. #define BT_UUID_MESH_PROXY_DATA_OUT \
  1314. BT_UUID_DECLARE_16(BT_UUID_MESH_PROXY_DATA_OUT_VAL)
  1315. /** @def BT_UUID_GATT_CLIENT_FEATURES_VAL
  1316. * @brief Client Supported Features UUID value
  1317. */
  1318. #define BT_UUID_GATT_CLIENT_FEATURES_VAL 0x2b29
  1319. /** @def BT_UUID_GATT_CLIENT_FEATURES
  1320. * @brief Client Supported Features
  1321. */
  1322. #define BT_UUID_GATT_CLIENT_FEATURES \
  1323. BT_UUID_DECLARE_16(BT_UUID_GATT_CLIENT_FEATURES_VAL)
  1324. /** @def BT_UUID_GATT_DB_HASH_VAL
  1325. * @brief Database Hash UUID value
  1326. */
  1327. #define BT_UUID_GATT_DB_HASH_VAL 0x2b2a
  1328. /** @def BT_UUID_GATT_DB_HASH
  1329. * @brief Database Hash
  1330. */
  1331. #define BT_UUID_GATT_DB_HASH \
  1332. BT_UUID_DECLARE_16(BT_UUID_GATT_DB_HASH_VAL)
  1333. /** @def BT_UUID_GATT_SERVER_FEATURES_VAL
  1334. * @brief Server Supported Features UUID value
  1335. */
  1336. #define BT_UUID_GATT_SERVER_FEATURES_VAL 0x2b3a
  1337. /** @def BT_UUID_GATT_SERVER_FEATURES
  1338. * @brief Server Supported Features
  1339. */
  1340. #define BT_UUID_GATT_SERVER_FEATURES \
  1341. BT_UUID_DECLARE_16(BT_UUID_GATT_SERVER_FEATURES_VAL)
  1342. /** @def BT_UUID_AICS_STATE_VAL
  1343. * @brief Audio Input Control Service State value
  1344. */
  1345. #define BT_UUID_AICS_STATE_VAL 0x2B77
  1346. /** @def BT_UUID_AICS_STATE
  1347. * @brief Audio Input Control Service State
  1348. */
  1349. #define BT_UUID_AICS_STATE \
  1350. BT_UUID_DECLARE_16(BT_UUID_AICS_STATE_VAL)
  1351. /** @def BT_UUID_AICS_GAIN_SETTINGS_VAL
  1352. * @brief Audio Input Control Service Gain Settings Properties value
  1353. */
  1354. #define BT_UUID_AICS_GAIN_SETTINGS_VAL 0x2B78
  1355. /** @def BT_UUID_AICS_GAIN_SETTINGS
  1356. * @brief Audio Input Control Service Gain Settings Properties
  1357. */
  1358. #define BT_UUID_AICS_GAIN_SETTINGS \
  1359. BT_UUID_DECLARE_16(BT_UUID_AICS_GAIN_SETTINGS_VAL)
  1360. /** @def BT_UUID_AICS_INPUT_TYPE_VAL
  1361. * @brief Audio Input Control Service Input Type value
  1362. */
  1363. #define BT_UUID_AICS_INPUT_TYPE_VAL 0x2B79
  1364. /** @def BT_UUID_AICS_INPUT_TYPE
  1365. * @brief Audio Input Control Service Input Type
  1366. */
  1367. #define BT_UUID_AICS_INPUT_TYPE \
  1368. BT_UUID_DECLARE_16(BT_UUID_AICS_INPUT_TYPE_VAL)
  1369. /** @def BT_UUID_AICS_INPUT_STATUS_VAL
  1370. * @brief Audio Input Control Service Input Status value
  1371. */
  1372. #define BT_UUID_AICS_INPUT_STATUS_VAL 0x2B7A
  1373. /** @def BT_UUID_AICS_INPUT_STATUS
  1374. * @brief Audio Input Control Service Input Status
  1375. */
  1376. #define BT_UUID_AICS_INPUT_STATUS \
  1377. BT_UUID_DECLARE_16(BT_UUID_AICS_INPUT_STATUS_VAL)
  1378. /** @def BT_UUID_AICS_CONTROL_VAL
  1379. * @brief Audio Input Control Service Control Point value
  1380. */
  1381. #define BT_UUID_AICS_CONTROL_VAL 0x2B7B
  1382. /** @def BT_UUID_AICS_CONTROL
  1383. * @brief Audio Input Control Service Control Point
  1384. */
  1385. #define BT_UUID_AICS_CONTROL \
  1386. BT_UUID_DECLARE_16(BT_UUID_AICS_CONTROL_VAL)
  1387. /** @def BT_UUID_AICS_DESCRIPTION_VAL
  1388. * @brief Audio Input Control Service Input Description value
  1389. */
  1390. #define BT_UUID_AICS_DESCRIPTION_VAL 0x2B7C
  1391. /** @def BT_UUID_AICS_DESCRIPTION
  1392. * @brief Audio Input Control Service Input Description
  1393. */
  1394. #define BT_UUID_AICS_DESCRIPTION \
  1395. BT_UUID_DECLARE_16(BT_UUID_AICS_DESCRIPTION_VAL)
  1396. /** @def BT_UUID_VCS_STATE_VAL
  1397. * @brief Volume Control Setting value
  1398. */
  1399. #define BT_UUID_VCS_STATE_VAL 0x2B7D
  1400. /** @def BT_UUID_VCS_STATE
  1401. * @brief Volume Control Setting
  1402. */
  1403. #define BT_UUID_VCS_STATE \
  1404. BT_UUID_DECLARE_16(BT_UUID_VCS_STATE_VAL)
  1405. /** @def BT_UUID_VCS_CONTROL_VAL
  1406. * @brief Volume Control Control point value
  1407. */
  1408. #define BT_UUID_VCS_CONTROL_VAL 0x2B7E
  1409. /** @def BT_UUID_VCS_CONTROL
  1410. * @brief Volume Control Control point
  1411. */
  1412. #define BT_UUID_VCS_CONTROL \
  1413. BT_UUID_DECLARE_16(BT_UUID_VCS_CONTROL_VAL)
  1414. /** @def BT_UUID_VCS_FLAGS_VAL
  1415. * @brief Volume Control Flags value
  1416. */
  1417. #define BT_UUID_VCS_FLAGS_VAL 0x2B7F
  1418. /** @def BT_UUID_VCS_FLAGS
  1419. * @brief Volume Control Flags
  1420. */
  1421. #define BT_UUID_VCS_FLAGS \
  1422. BT_UUID_DECLARE_16(BT_UUID_VCS_FLAGS_VAL)
  1423. /** @def BT_UUID_VOCS_STATE_VAL
  1424. * @brief Volume Offset State value
  1425. */
  1426. #define BT_UUID_VOCS_STATE_VAL 0x2B80
  1427. /** @def BT_UUID_VOCS_STATE
  1428. * @brief Volume Offset State
  1429. */
  1430. #define BT_UUID_VOCS_STATE \
  1431. BT_UUID_DECLARE_16(BT_UUID_VOCS_STATE_VAL)
  1432. /** @def BT_UUID_VOCS_LOCATION_VAL
  1433. * @brief Audio Location value
  1434. */
  1435. #define BT_UUID_VOCS_LOCATION_VAL 0x2B81
  1436. /** @def BT_UUID_VOCS_LOCATION
  1437. * @brief Audio Location
  1438. */
  1439. #define BT_UUID_VOCS_LOCATION \
  1440. BT_UUID_DECLARE_16(BT_UUID_VOCS_LOCATION_VAL)
  1441. /** @def BT_UUID_VOCS_CONTROL_VAL
  1442. * @brief Volume Offset Control Point value
  1443. */
  1444. #define BT_UUID_VOCS_CONTROL_VAL 0x2B82
  1445. /** @def BT_UUID_VOCS_CONTROL
  1446. * @brief Volume Offset Control Point
  1447. */
  1448. #define BT_UUID_VOCS_CONTROL \
  1449. BT_UUID_DECLARE_16(BT_UUID_VOCS_CONTROL_VAL)
  1450. /** @def BT_UUID_VOCS_DESCRIPTION_VAL
  1451. * @brief Volume Offset Audio Output Description value
  1452. */
  1453. #define BT_UUID_VOCS_DESCRIPTION_VAL 0x2B83
  1454. /** @def BT_UUID_VOCS_DESCRIPTION
  1455. * @brief Volume Offset Audio Output Description
  1456. */
  1457. #define BT_UUID_VOCS_DESCRIPTION \
  1458. BT_UUID_DECLARE_16(BT_UUID_VOCS_DESCRIPTION_VAL)
  1459. /** @def BT_UUID_MICS_MUTE_VAL
  1460. * @brief Microphone Input Control Service Mute value
  1461. */
  1462. #define BT_UUID_MICS_MUTE_VAL 0x2BC3
  1463. /** @def BT_UUID_MICS_MUTE
  1464. * @brief Microphone Input Control Service Mute
  1465. */
  1466. #define BT_UUID_MICS_MUTE \
  1467. BT_UUID_DECLARE_16(BT_UUID_MICS_MUTE_VAL)
  1468. /*
  1469. * Protocol UUIDs
  1470. */
  1471. #define BT_UUID_SDP_VAL 0x0001
  1472. #define BT_UUID_SDP BT_UUID_DECLARE_16(BT_UUID_SDP_VAL)
  1473. #define BT_UUID_UDP_VAL 0x0002
  1474. #define BT_UUID_UDP BT_UUID_DECLARE_16(BT_UUID_UDP_VAL)
  1475. #define BT_UUID_RFCOMM_VAL 0x0003
  1476. #define BT_UUID_RFCOMM BT_UUID_DECLARE_16(BT_UUID_RFCOMM_VAL)
  1477. #define BT_UUID_TCP_VAL 0x0004
  1478. #define BT_UUID_TCP BT_UUID_DECLARE_16(BT_UUID_TCP_VAL)
  1479. #define BT_UUID_TCS_BIN_VAL 0x0005
  1480. #define BT_UUID_TCS_BIN BT_UUID_DECLARE_16(BT_UUID_TCS_BIN_VAL)
  1481. #define BT_UUID_TCS_AT_VAL 0x0006
  1482. #define BT_UUID_TCS_AT BT_UUID_DECLARE_16(BT_UUID_TCS_AT_VAL)
  1483. #define BT_UUID_ATT_VAL 0x0007
  1484. #define BT_UUID_ATT BT_UUID_DECLARE_16(BT_UUID_ATT_VAL)
  1485. #define BT_UUID_OBEX_VAL 0x0008
  1486. #define BT_UUID_OBEX BT_UUID_DECLARE_16(BT_UUID_OBEX_VAL)
  1487. #define BT_UUID_IP_VAL 0x0009
  1488. #define BT_UUID_IP BT_UUID_DECLARE_16(BT_UUID_IP_VAL)
  1489. #define BT_UUID_FTP_VAL 0x000a
  1490. #define BT_UUID_FTP BT_UUID_DECLARE_16(BT_UUID_FTP_VAL)
  1491. #define BT_UUID_HTTP_VAL 0x000c
  1492. #define BT_UUID_HTTP BT_UUID_DECLARE_16(BT_UUID_HTTP_VAL)
  1493. #define BT_UUID_BNEP_VAL 0x000f
  1494. #define BT_UUID_BNEP BT_UUID_DECLARE_16(BT_UUID_BNEP_VAL)
  1495. #define BT_UUID_UPNP_VAL 0x0010
  1496. #define BT_UUID_UPNP BT_UUID_DECLARE_16(BT_UUID_UPNP_VAL)
  1497. #define BT_UUID_HIDP_VAL 0x0011
  1498. #define BT_UUID_HIDP BT_UUID_DECLARE_16(BT_UUID_HIDP_VAL)
  1499. #define BT_UUID_HCRP_CTRL_VAL 0x0012
  1500. #define BT_UUID_HCRP_CTRL BT_UUID_DECLARE_16(BT_UUID_HCRP_CTRL_VAL)
  1501. #define BT_UUID_HCRP_DATA_VAL 0x0014
  1502. #define BT_UUID_HCRP_DATA BT_UUID_DECLARE_16(BT_UUID_HCRP_DATA_VAL)
  1503. #define BT_UUID_HCRP_NOTE_VAL 0x0016
  1504. #define BT_UUID_HCRP_NOTE BT_UUID_DECLARE_16(BT_UUID_HCRP_NOTE_VAL)
  1505. #define BT_UUID_AVCTP_VAL 0x0017
  1506. #define BT_UUID_AVCTP BT_UUID_DECLARE_16(BT_UUID_AVCTP_VAL)
  1507. #define BT_UUID_AVDTP_VAL 0x0019
  1508. #define BT_UUID_AVDTP BT_UUID_DECLARE_16(BT_UUID_AVDTP_VAL)
  1509. #define BT_UUID_CMTP_VAL 0x001b
  1510. #define BT_UUID_CMTP BT_UUID_DECLARE_16(BT_UUID_CMTP_VAL)
  1511. #define BT_UUID_UDI_VAL 0x001d
  1512. #define BT_UUID_UDI BT_UUID_DECLARE_16(BT_UUID_UDI_VAL)
  1513. #define BT_UUID_MCAP_CTRL_VAL 0x001e
  1514. #define BT_UUID_MCAP_CTRL BT_UUID_DECLARE_16(BT_UUID_MCAP_CTRL_VAL)
  1515. #define BT_UUID_MCAP_DATA_VAL 0x001f
  1516. #define BT_UUID_MCAP_DATA BT_UUID_DECLARE_16(BT_UUID_MCAP_DATA_VAL)
  1517. #define BT_UUID_L2CAP_VAL 0x0100
  1518. #define BT_UUID_L2CAP BT_UUID_DECLARE_16(BT_UUID_L2CAP_VAL)
  1519. /** @brief Compare Bluetooth UUIDs.
  1520. *
  1521. * Compares 2 Bluetooth UUIDs, if the types are different both UUIDs are
  1522. * first converted to 128 bits format before comparing.
  1523. *
  1524. * @param u1 First Bluetooth UUID to compare
  1525. * @param u2 Second Bluetooth UUID to compare
  1526. *
  1527. * @return negative value if @a u1 < @a u2, 0 if @a u1 == @a u2, else positive
  1528. */
  1529. int bt_uuid_cmp(const struct bt_uuid *u1, const struct bt_uuid *u2);
  1530. /** @brief Create a bt_uuid from a little-endian data buffer.
  1531. *
  1532. * Create a bt_uuid from a little-endian data buffer. The data_len parameter
  1533. * is used to determine whether the UUID is in 16, 32 or 128 bit format
  1534. * (length 2, 4 or 16). Note: 32 bit format is not allowed over the air.
  1535. *
  1536. * @param uuid Pointer to the bt_uuid variable
  1537. * @param data pointer to UUID stored in little-endian data buffer
  1538. * @param data_len length of the UUID in the data buffer
  1539. *
  1540. * @return true if the data was valid and the UUID was successfully created.
  1541. */
  1542. bool bt_uuid_create(struct bt_uuid *uuid, const uint8_t *data, uint8_t data_len);
  1543. /** @brief Convert Bluetooth UUID to string.
  1544. *
  1545. * Converts Bluetooth UUID to string.
  1546. * UUID can be in any format, 16-bit, 32-bit or 128-bit.
  1547. *
  1548. * @param uuid Bluetooth UUID
  1549. * @param str pointer where to put converted string
  1550. * @param len length of str
  1551. *
  1552. * @return N/A
  1553. */
  1554. void bt_uuid_to_str(const struct bt_uuid *uuid, char *str, size_t len);
  1555. #ifdef __cplusplus
  1556. }
  1557. #endif
  1558. /**
  1559. * @}
  1560. */
  1561. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_UUID_H_ */