bt_manager_sco.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 a2dp profile.
  9. */
  10. #define SYS_LOG_NO_NEWLINE
  11. #define SYS_LOG_DOMAIN "bt manager"
  12. #include <os_common_api.h>
  13. #include <zephyr.h>
  14. #include <stdlib.h>
  15. #include <stdio.h>
  16. #include <string.h>
  17. #include <stream.h>
  18. #include <bt_manager.h>
  19. #include <power_manager.h>
  20. #include <app_manager.h>
  21. #include <sys_event.h>
  22. #include <mem_manager.h>
  23. #include "bt_manager_inner.h"
  24. #include <assert.h>
  25. #include "btservice_api.h"
  26. #ifdef CONFIG_MEDIA
  27. #include <media_type.h>
  28. #endif
  29. struct bt_manager_hfp_sco_info_t {
  30. uint8_t hfp_codec_id;
  31. uint8_t hfp_sample_rate;
  32. };
  33. static struct bt_manager_hfp_sco_info_t hfp_sco_manager;
  34. static void _bt_manager_sco_callback(btsrv_hfp_event_e event, uint8_t *param, int param_size)
  35. {
  36. switch (event) {
  37. case BTSRV_SCO_DATA_INDICATED:
  38. {
  39. int ret = 0;
  40. static uint8_t print_cnt = 0;
  41. bt_manager_stream_pool_lock();
  42. io_stream_t bt_stream = bt_manager_get_stream(STREAM_TYPE_SCO);
  43. if (!bt_stream) {
  44. bt_manager_stream_pool_unlock();
  45. if (print_cnt == 0) {
  46. SYS_LOG_WRN("stream is null\n");
  47. }
  48. print_cnt++;
  49. break;
  50. }
  51. if (stream_get_space(bt_stream) < param_size) {
  52. bt_manager_stream_pool_unlock();
  53. if (print_cnt == 0) {
  54. SYS_LOG_WRN("stream is full\n");
  55. }
  56. print_cnt++;
  57. break;
  58. }
  59. ret = stream_write(bt_stream, param, param_size);
  60. if (ret != param_size) {
  61. SYS_LOG_WRN("write %d error %d\n", param_size, ret);
  62. }
  63. bt_manager_stream_pool_unlock();
  64. print_cnt = 0;
  65. break;
  66. }
  67. default:
  68. break;
  69. }
  70. }
  71. int bt_manager_hfp_sco_start(void)
  72. {
  73. return btif_sco_start(&_bt_manager_sco_callback);
  74. }
  75. int bt_manager_hfp_sco_stop(void)
  76. {
  77. return btif_sco_stop();
  78. }
  79. int bt_manager_sco_get_codecid(void)
  80. {
  81. #ifdef CONFIG_MEDIA
  82. if (!hfp_sco_manager.hfp_codec_id) {
  83. hfp_sco_manager.hfp_codec_id = CVSD_TYPE;
  84. }
  85. #endif
  86. SYS_LOG_INF("codec_id %d\n", hfp_sco_manager.hfp_codec_id);
  87. return hfp_sco_manager.hfp_codec_id;
  88. }
  89. int bt_manager_sco_get_sample_rate(void)
  90. {
  91. if (!hfp_sco_manager.hfp_sample_rate) {
  92. hfp_sco_manager.hfp_sample_rate = 8;
  93. }
  94. SYS_LOG_INF("sample rate %d\n", hfp_sco_manager.hfp_sample_rate);
  95. return hfp_sco_manager.hfp_sample_rate;
  96. }
  97. /**add for asqt btcall simulator*/
  98. void bt_manager_sco_set_codec_info(uint8_t codec_id, uint8_t sample_rate)
  99. {
  100. #ifdef CONFIG_MEDIA
  101. assert((codec_id == CVSD_TYPE && sample_rate == 8)
  102. || (codec_id == MSBC_TYPE && sample_rate == 16));
  103. #endif
  104. hfp_sco_manager.hfp_codec_id = codec_id;
  105. hfp_sco_manager.hfp_sample_rate = sample_rate;
  106. }
  107. int bt_manager_hfp_sco_init(void)
  108. {
  109. memset(&hfp_sco_manager, 0, sizeof(struct bt_manager_hfp_sco_info_t));
  110. return 0;
  111. }