123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # Copyright (c) 2018 Intel Corporation
- # SPDX-License-Identifier: Apache-2.0
- menuconfig BT_DRV
- bool "Actions Bluetooth driver"
- default n
- help
- Enable support for actions bt driver
- if BT_DRV
- config BT_HCI_RX_PRIO
- int "BT hci rx thread priority"
- default 6
- config BT_HCI_TX_RBUF_SIZE
- int "BT hci tx ring buf size"
- default 2048
- config BT_HCI_RX_RBUF_SIZE
- int "BT hci rx ring buf size"
- default 2048
- config BT_HCI_ACTS
- bool "Enable bt hci driver"
- default n
- config BT_ECC_ACTS
- bool "Enable Actions Bluetooth Tinycrypt Ecc"
- select TINYCRYPT
- select TINYCRYPT_ECC_DH
- select TINYCRYPT_SHA256
- select TINYCRYPT_SHA256_HMAC
- select TINYCRYPT_SHA256_HMAC_PRNG
- default n
- config BT_CTRL_TWS
- bool "bt ctrl support tws"
- default y
- config BT_CTRL_REG
- bool "bt ctrl support read/write (bb/rf) op"
- default n
- config BT_CTRL_DEBUG
- bool "Enable debug for BT CPU"
- default n
- config BT_CTRL_LOG
- bool "Enable btc log"
- default n
- config BT_HCI_RX_PRINT
- bool "Enable Bluetooth hci RX Print"
- default n
- config BT_HCI_TX_PRINT
- bool "Enable Bluetooth hci RX Print"
- default n
- config BT_CTRL_BQB
- bool "Enable Actions Bluetooth Controller BQB Test"
- default n
- config BT_CTRL_RF_DEBUG
- bool "Enable Load bt_rf.bin"
- depends on BT_CTRL_BQB
- default n
- config BT_CTRL_BLE_BQB
- bool "Enable Actions Bluetooth LE Controller BQB Test"
- depends on BT_CTRL_BQB
- default n
- config BT_POWER_TEST_MODE
- bool "Bluetooth for power test"
- default n
- help
- Bluetooth for power test
- endif # BT_DRV
|