fix(bt/bluedroid): Fix hid example stack overflow bugs when using esp32s3

This commit is contained in:
zhanghaipeng 2023-09-25 14:05:55 +08:00
parent 0b5aec08e0
commit 30f067faff

View File

@ -977,7 +977,7 @@ esp_err_t esp_ble_hidd_dev_init(esp_hidd_dev_t *dev_p, const esp_hid_device_conf
.queue_size = 5,
.task_name = "ble_hidd_events",
.task_priority = uxTaskPriorityGet(NULL),
.task_stack_size = 2048,
.task_stack_size = 4096,
.task_core_id = tskNO_AFFINITY
};
ret = esp_event_loop_create(&event_task_args, &s_dev->event_loop_handle);