btsrv_config.h 497 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file media service config interface
  8. */
  9. #ifndef __BTSRV_CONFIG_H__
  10. #define __BTSRV_CONFIG_H__
  11. #define CONFIG_MAX_BT_NAME_LEN 32
  12. #ifdef CONFIG_TWS
  13. #define CONFIG_SUPPORT_TWS 1
  14. #endif
  15. #define CONFIG_MAX_A2DP_ENDPOINT 3
  16. #define CONFIG_MAX_SPP_CHANNEL 4
  17. #define CONFIG_MAX_PBAP_CONNECT 2
  18. #define CONFIG_MAX_MAP_CONNECT 2
  19. #define CONFIG_DEBUG_DATA_RATE 1
  20. #endif