hfp_hf.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /** @file
  2. * @brief Handsfree Profile handling.
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_HFP_HF_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_HFP_HF_H_
  11. /**
  12. * @brief Hands Free Profile (HFP)
  13. * @defgroup bt_hfp Hands Free Profile (HFP)
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <bluetooth/bluetooth.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /* AT Commands */
  22. enum bt_hfp_hf_at_cmd {
  23. BT_HFP_HF_ATA,
  24. BT_HFP_HF_AT_CHUP,
  25. };
  26. /*
  27. * Command complete types for the application
  28. */
  29. #define HFP_HF_CMD_OK 0
  30. #define HFP_HF_CMD_ERROR 1
  31. #define HFP_HF_CMD_CME_ERROR 2
  32. #define HFP_HF_CMD_UNKNOWN_ERROR 4
  33. /** @brief HFP HF Command completion field */
  34. struct bt_hfp_hf_cmd_complete {
  35. /* Command complete status */
  36. uint8_t type;
  37. /* CME error number to be added */
  38. uint8_t cme;
  39. };
  40. /** @brief HFP profile application callback */
  41. struct bt_hfp_hf_cb {
  42. /** HF connected callback to application
  43. *
  44. * If this callback is provided it will be called whenever the
  45. * connection completes.
  46. *
  47. * @param conn Connection object.
  48. */
  49. void (*connected)(struct bt_conn *conn);
  50. /** HF disconnected callback to application
  51. *
  52. * If this callback is provided it will be called whenever the
  53. * connection gets disconnected, including when a connection gets
  54. * rejected or cancelled or any error in SLC establisment.
  55. *
  56. * @param conn Connection object.
  57. */
  58. void (*disconnected)(struct bt_conn *conn);
  59. /** HF indicator Callback
  60. *
  61. * This callback provides service indicator value to the application
  62. *
  63. * @param conn Connection object.
  64. * @param value service indicator value received from the AG.
  65. */
  66. void (*service)(struct bt_conn *conn, uint32_t value);
  67. /** HF indicator Callback
  68. *
  69. * This callback provides call indicator value to the application
  70. *
  71. * @param conn Connection object.
  72. * @param value call indicator value received from the AG.
  73. */
  74. void (*call)(struct bt_conn *conn, uint32_t value);
  75. /** HF indicator Callback
  76. *
  77. * This callback provides call setup indicator value to the application
  78. *
  79. * @param conn Connection object.
  80. * @param value call setup indicator value received from the AG.
  81. */
  82. void (*call_setup)(struct bt_conn *conn, uint32_t value);
  83. /** HF indicator Callback
  84. *
  85. * This callback provides call held indicator value to the application
  86. *
  87. * @param conn Connection object.
  88. * @param value call held indicator value received from the AG.
  89. */
  90. void (*call_held)(struct bt_conn *conn, uint32_t value);
  91. /** HF indicator Callback
  92. *
  93. * This callback provides signal indicator value to the application
  94. *
  95. * @param conn Connection object.
  96. * @param value signal indicator value received from the AG.
  97. */
  98. void (*signal)(struct bt_conn *conn, uint32_t value);
  99. /** HF indicator Callback
  100. *
  101. * This callback provides roaming indicator value to the application
  102. *
  103. * @param conn Connection object.
  104. * @param value roaming indicator value received from the AG.
  105. */
  106. void (*roam)(struct bt_conn *conn, uint32_t value);
  107. /** HF indicator Callback
  108. *
  109. * This callback battery service indicator value to the application
  110. *
  111. * @param conn Connection object.
  112. * @param value battery indicator value received from the AG.
  113. */
  114. void (*battery)(struct bt_conn *conn, uint32_t value);
  115. /** HF incoming call Ring indication callback to application
  116. *
  117. * If this callback is provided it will be called whenever there
  118. * is an incoming call.
  119. *
  120. * @param conn Connection object.
  121. */
  122. void (*ring_indication)(struct bt_conn *conn);
  123. /** HF notify command completed callback to application
  124. *
  125. * The command sent from the application is notified about its status
  126. *
  127. * @param conn Connection object.
  128. * @param cmd structure contains status of the command including cme.
  129. */
  130. void (*cmd_complete_cb)(struct bt_conn *conn,
  131. struct bt_hfp_hf_cmd_complete *cmd);
  132. };
  133. /** @brief Register HFP HF profile
  134. *
  135. * Register Handsfree profile callbacks to monitor the state and get the
  136. * required HFP details to display.
  137. *
  138. * @param cb callback structure.
  139. *
  140. * @return 0 in case of success or negative value in case of error.
  141. */
  142. int bt_hfp_hf_register(struct bt_hfp_hf_cb *cb);
  143. /** @brief Handsfree client Send AT
  144. *
  145. * Send specific AT commands to handsfree client profile.
  146. *
  147. * @param conn Connection object.
  148. * @param cmd AT command to be sent.
  149. *
  150. * @return 0 in case of success or negative value in case of error.
  151. */
  152. int bt_hfp_hf_send_cmd(struct bt_conn *conn, enum bt_hfp_hf_at_cmd cmd);
  153. #ifdef __cplusplus
  154. }
  155. #endif
  156. /**
  157. * @}
  158. */
  159. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_HFP_HF_H_ */