mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-07 09:55:45 +00:00
esp32: disable packet log, disable host controller to host flow control until fixed in host controller implementation
This commit is contained in:
parent
7ef3b0106f
commit
e1af16c963
@ -40,7 +40,13 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
// HCI Controller to Host Flow Control
|
// HCI Controller to Host Flow Control
|
||||||
#define ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
|
//
|
||||||
|
// Needed on the ESP32, but not working yet
|
||||||
|
// see https://github.com/espressif/esp-idf/issues/480
|
||||||
|
//
|
||||||
|
// #define ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL
|
||||||
|
|
||||||
|
// Interal ring buffer
|
||||||
#define HCI_HOST_ACL_PACKET_NUM 10
|
#define HCI_HOST_ACL_PACKET_NUM 10
|
||||||
#define HCI_HOST_ACL_PACKET_LEN 1024
|
#define HCI_HOST_ACL_PACKET_LEN 1024
|
||||||
#define HCI_HOST_SCO_PACKET_NUM 10
|
#define HCI_HOST_SCO_PACKET_NUM 10
|
||||||
|
@ -301,7 +301,8 @@ static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *pack
|
|||||||
|
|
||||||
static void btstack_setup(void){
|
static void btstack_setup(void){
|
||||||
|
|
||||||
hci_dump_open(NULL, HCI_DUMP_STDOUT);
|
// enable packet logger
|
||||||
|
// hci_dump_open(NULL, HCI_DUMP_STDOUT);
|
||||||
|
|
||||||
/// GET STARTED with BTstack ///
|
/// GET STARTED with BTstack ///
|
||||||
btstack_memory_init();
|
btstack_memory_init();
|
||||||
|
Loading…
Reference in New Issue
Block a user