bt_manager_pnp.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt manager hfp ag profile.
  9. */
  10. #define SYS_LOG_NO_NEWLINE
  11. #define SYS_LOG_DOMAIN "bt manager"
  12. #include <os_common_api.h>
  13. #include <media_type.h>
  14. #include <zephyr.h>
  15. #include <stdlib.h>
  16. #include <stdio.h>
  17. #include <string.h>
  18. #include <stream.h>
  19. #include <bt_manager.h>
  20. #include <power_manager.h>
  21. #include <app_manager.h>
  22. #include <sys_event.h>
  23. #include <mem_manager.h>
  24. #include "bt_manager_inner.h"
  25. #include <assert.h>
  26. #include "btservice_api.h"
  27. struct bt_manager_pnp_info_t {
  28. uint16_t vendor_id;
  29. uint16_t product_id;
  30. };
  31. static struct bt_manager_pnp_info_t pnp_info_manager;
  32. static void _bt_manager_pnp_info_callback(btsrv_pnp_info_event_e event, void *param, int param_size)
  33. {
  34. uint16_t *value = param;
  35. switch (event) {
  36. case BTSRV_PNP_VENDOR_ID:
  37. {
  38. if (sizeof(uint16_t) != param_size) {
  39. SYS_LOG_ERR("param_size 0x%x\n",param_size);
  40. break;
  41. }
  42. pnp_info_manager.vendor_id = (*value);
  43. SYS_LOG_INF("vendor id 0x%x\n",pnp_info_manager.vendor_id);
  44. #ifdef CONFIG_BR_SDP_ACTIVE_REGISTER
  45. #ifdef CONFIG_GATT_OVER_BREDR
  46. /**XIAOMI phone use gatt over edr.**/
  47. if (0x38F != pnp_info_manager.vendor_id) {
  48. //void bt_unregister_gobr_sdp(void);
  49. //bt_unregister_gobr_sdp();
  50. }
  51. /**Avoid connect over LE and EDR together.**/
  52. if (0x38F == pnp_info_manager.vendor_id) {
  53. //bt_manager_ble_disconnect();
  54. }
  55. #endif
  56. #endif
  57. break;
  58. }
  59. case BTSRV_PNP_PRODUCT_ID:
  60. {
  61. if (sizeof(uint16_t) != param_size) {
  62. SYS_LOG_ERR("param_size 0x%x\n",param_size);
  63. break;
  64. }
  65. pnp_info_manager.product_id = (*value);
  66. SYS_LOG_INF("product_id 0x%x\n",pnp_info_manager.product_id);
  67. break;
  68. }
  69. default:
  70. break;
  71. }
  72. }
  73. int bt_manager_pnp_info_search_init(void)
  74. {
  75. memset(&pnp_info_manager, 0, sizeof(struct bt_manager_pnp_info_t));
  76. btif_pnp_info_search_start(&_bt_manager_pnp_info_callback);
  77. return 0;
  78. }
  79. int bt_manager_pnp_info_search_deinit(void)
  80. {
  81. return btif_pnp_info_search_stop();
  82. }