From 5266d816022bd1c3636cb4759601bacaca94c37d Mon Sep 17 00:00:00 2001 From: Layne Bernardo Date: Mon, 11 Jan 2021 07:43:54 -0600 Subject: [PATCH] Use larger event stack for esp_hid_host example Merges https://github.com/espressif/esp-idf/pull/6385 --- examples/bluetooth/esp_hid_host/main/esp_hid_host_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/bluetooth/esp_hid_host/main/esp_hid_host_main.c b/examples/bluetooth/esp_hid_host/main/esp_hid_host_main.c index 065aa85ec69..49f93f2e440 100644 --- a/examples/bluetooth/esp_hid_host/main/esp_hid_host_main.c +++ b/examples/bluetooth/esp_hid_host/main/esp_hid_host_main.c @@ -127,6 +127,7 @@ void app_main(void) ESP_ERROR_CHECK( esp_ble_gattc_register_callback(esp_hidh_gattc_event_handler) ); esp_hidh_config_t config = { .callback = hidh_callback, + .event_stack_size = 4096 }; ESP_ERROR_CHECK( esp_hidh_init(&config) );