direction.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_DF_H_
  7. #define ZEPHYR_INCLUDE_BLUETOOTH_DF_H_
  8. /** Constant Tone Extension (CTE) types. */
  9. enum bt_df_cte_type {
  10. /** Convenience value for purposes where non of CTE types is allowed. */
  11. BT_DF_CTE_TYPE_NONE = 0,
  12. /** Angle of Arrival mode. Antenna switching done on receiver site. */
  13. BT_DF_CTE_TYPE_AOA = BIT(0),
  14. /** Angle of Departure mode with 1 us antenna switching slots.
  15. * Antenna switching done on transmitter site.
  16. */
  17. BT_DF_CTE_TYPE_AOD_1US = BIT(1),
  18. /** Angle of Departure mode with 2 us antenna switching slots.
  19. * Antenna switching done on transmitter site.
  20. */
  21. BT_DF_CTE_TYPE_AOD_2US = BIT(2),
  22. /** Convenience value that collects all possible CTE types in one entry. */
  23. BT_DF_CTE_TYPE_ALL = (BT_DF_CTE_TYPE_AOA | BT_DF_CTE_TYPE_AOD_1US | BT_DF_CTE_TYPE_AOD_2US)
  24. };
  25. /** Allowed antenna switching slots: 1 us or 2 us */
  26. enum bt_df_antenna_switching_slot {
  27. BT_DF_ANTENNA_SWITCHING_SLOT_1US = 0x1,
  28. BT_DF_ANTENNA_SWITCHING_SLOT_2US = 0x2
  29. };
  30. /** Possible statuses of PDU that contained reported CTE. */
  31. enum bt_df_packet_status {
  32. /** Received PDU had CRC OK */
  33. BT_DF_CTE_CRC_OK = 0x0,
  34. /** Received PDU had incorrect CRC, but Radio peripheral
  35. * was able to parse CTEInfo field of the PDU and process
  36. * sampling of CTE.
  37. */
  38. BT_DF_CTE_CRC_ERR_CTE_BASED_TIME = 0x1,
  39. /** Received PDU had incorrect CRC, but Radio peripheral
  40. * was able to process sampling of CTE in some other way.
  41. */
  42. BT_DF_CTE_CRC_ERR_CTE_BASED_OTHER = 0x2,
  43. /** There were no sufficient resources to sample CTE. */
  44. BT_DF_CTE_INSUFFICIENT_RESOURCES = 0xFF
  45. };
  46. /** @brief Constant Tone Extension parameters for connectionless
  47. * transmission.
  48. *
  49. * The structure holds information required to setup CTE transmission
  50. * in periodic advertising.
  51. */
  52. struct bt_df_adv_cte_tx_param {
  53. /** Length of CTE in 8us units. */
  54. uint8_t cte_len;
  55. /** CTE Type: AoA, AoD 1us slots, AoD 2us slots. */
  56. uint8_t cte_type;
  57. /** Number of CTE to transmit in each periodic adv interval. */
  58. uint8_t cte_count;
  59. /** Number of Antenna IDs in the switch pattern. */
  60. uint8_t num_ant_ids;
  61. /** List of antenna IDs in the pattern. */
  62. uint8_t *ant_ids;
  63. };
  64. /**
  65. * @brief Constant Tone Extension parameters for connectionless reception.
  66. *
  67. * @note cte_type is a bit field that provides information about type of CTE an application
  68. * expects (@ref bt_df_cte_type). In case cte_type bit BT_DF_CTE_TYPE_AOA is not set, members:
  69. * slot_durations, num_ant_ids and ant_ids are not required and their values will be not verified
  70. * for correctness.
  71. */
  72. struct bt_df_per_adv_sync_cte_rx_param {
  73. /* Bitmap with allowed CTE types (@ref bt_df_cte_type). */
  74. uint8_t cte_type;
  75. /** Antenna switching slots (@ref bt_df_antenna_switching_slot). */
  76. uint8_t slot_durations;
  77. /** Max number of CTEs to receive. Min is 1, max is 10, 0 means receive continuously. */
  78. uint8_t max_cte_count;
  79. /** Length of antenna switch pattern. */
  80. uint8_t num_ant_ids;
  81. /** Antenna switch pattern. */
  82. const uint8_t *ant_ids;
  83. };
  84. struct bt_df_per_adv_sync_iq_samples_report {
  85. /** Channel index used to receive PDU with CTE that was sampled. */
  86. uint8_t chan_idx;
  87. /** The RSSI of the PDU with CTE (excluding CTE). */
  88. int16_t rssi;
  89. /** Id of antenna used to measure the RSSI. */
  90. uint8_t rssi_ant_id;
  91. /** Type of CTE (@ref bt_df_cte_type). */
  92. uint8_t cte_type;
  93. /** Duration of slots when received CTE type is AoA (@ref bt_df_antenna_switching_slot). */
  94. uint8_t slot_durations;
  95. /** Status of received PDU with CTE (@ref bt_df_packet_status). */
  96. uint8_t packet_status;
  97. /** Number of IQ samples in report. */
  98. uint8_t sample_count;
  99. /** Pinter to IQ samples data. */
  100. struct bt_hci_le_iq_sample const *sample;
  101. };
  102. /**
  103. * @brief Set or update the Constant Tone Extension parameters for periodic advertising set.
  104. *
  105. * @param[in] adv Advertising set object.
  106. * @param[in] params Constant Tone Extension parameters.
  107. *
  108. * @return Zero on success or (negative) error code otherwise.
  109. */
  110. int bt_df_set_adv_cte_tx_param(struct bt_le_ext_adv *adv,
  111. const struct bt_df_adv_cte_tx_param *params);
  112. /**
  113. * @brief Enable transmission of Constant Tone Extension for the given advertising set.
  114. *
  115. * Transmission of Constant Tone Extension may be enabled only after setting periodic advertising
  116. * parameters (@ref bt_le_per_adv_set_param) and Constant Tone Extension parameters
  117. * (@ref bt_df_set_adv_cte_tx_param).
  118. *
  119. * @param[in] adv Advertising set object.
  120. *
  121. * @return Zero on success or (negative) error code otherwise.
  122. */
  123. int bt_df_adv_cte_tx_enable(struct bt_le_ext_adv *adv);
  124. /**
  125. * @brief Disable transmission of Constant Tone Extension for the given advertising set.
  126. *
  127. * @param[in] adv Advertising set object.
  128. *
  129. * @return Zero on success or (negative) error code otherwise.
  130. */
  131. int bt_df_adv_cte_tx_disable(struct bt_le_ext_adv *adv);
  132. /**
  133. * @brief Enable receive and sampling of Constant Tone Extension for the given sync set.
  134. *
  135. * Receive and sampling of Constant Tone Extension may be enabled only after periodic advertising
  136. * sync is established.
  137. *
  138. * @param sync Periodic advertising sync object.
  139. * @param params CTE receive and sampling parameters.
  140. *
  141. * @return Zero on success or (negative) error code otherwise.
  142. */
  143. int bt_df_per_adv_sync_cte_rx_enable(struct bt_le_per_adv_sync *sync,
  144. const struct bt_df_per_adv_sync_cte_rx_param *params);
  145. /**
  146. * @brief Disable receive and sampling of Constant Tone Extension for the given sync set.
  147. *
  148. * @param sync Periodic advertising sync object.
  149. *
  150. * @return Zero on success or (negative) error code otherwise.
  151. */
  152. int bt_df_per_adv_sync_cte_rx_disable(struct bt_le_per_adv_sync *sync);
  153. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_DF_H_ */