btdrv_api.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #ifndef _BTDRV_API_H
  2. #define _BTDRV_API_H
  3. #include <zephyr/types.h>
  4. /**
  5. * @defgroup bt dirver APIs
  6. * @ingroup bluetooth_system_apis
  7. * @brief Just for bt stack used, not for application.
  8. * @{
  9. * @}
  10. */
  11. /**
  12. * @cond INTERNAL_HIDDEN
  13. */
  14. typedef void (*btdrv_rx_cb_t)(void *buf, int len, uint8_t type);
  15. /******************************************************************************/
  16. /*!
  17. * \par Description:
  18. * bluetooth driver initialize
  19. * \param[in] rx_cb: hci data receive call back function
  20. * \param[out] none
  21. * \return init result: 0 success, other: failed
  22. *******************************************************************************/
  23. int btdrv_init(btdrv_rx_cb_t rx_cb);
  24. /******************************************************************************/
  25. /*!
  26. * \par Description:
  27. * bluetooth driver exit
  28. * \param[in] none
  29. * \param[out] none
  30. * \return none
  31. *******************************************************************************/
  32. void btdrv_exit(void);
  33. /******************************************************************************/
  34. /*!
  35. * \par Description:
  36. * send data from buffer to uart tx.
  37. * \param[in] buf data-buffer.
  38. * \param[in] len length of data to be sent.
  39. * \param[in] type hci packet type.
  40. * \param[out] none
  41. * \return length of data to be sent.
  42. *****************************************************************************/
  43. int btdrv_send(void *buf, int len, uint8_t type);
  44. /******************************************************************************/
  45. /*!
  46. * \par Description:
  47. * set hci acl data print enable.
  48. * \param[in] enable: enable or disable.
  49. * \param[out] none
  50. * \return pre-enabel state.
  51. *****************************************************************************/
  52. uint8_t hci_set_acl_print_enable(uint8_t enable);
  53. /******************************************************************************/
  54. /*!
  55. * \par Description:
  56. * get bt controller init
  57. * \param[in] none
  58. * \param[out] none
  59. * \return -1:not initialized 0:already initialized
  60. *******************************************************************************/
  61. int btdrv_get_init_status(void);
  62. /******************************************************************************/
  63. /*!
  64. * \par Description:
  65. * set controller active device
  66. * \param[in] link_handle ---- esco handle for esco link; acl handle for acl link ( not support acl now. )
  67. * \param[in] mode ---- 1 for acl link; 2 for esco link;
  68. * \return -1:not initialized 0:already initialized
  69. *******************************************************************************/
  70. void bt_controller_set_active_device(uint32_t link_handle, uint32_t mode);
  71. /******************************************************************************/
  72. /*!
  73. * \par Description:
  74. * get bt controller bqb mode
  75. * \param[in] none
  76. * \param[out] none
  77. * \return bqb mode (call after btdrv_init finish)
  78. *******************************************************************************/
  79. uint8_t bt_controller_get_bqb_mode(void);
  80. /**
  81. * INTERNAL_HIDDEN @endcond
  82. */
  83. #endif