Skip to content

Commit

Permalink
Merge branch 'contrib/github_pr_13951_v5.2' into 'release/v5.2'
Browse files Browse the repository at this point in the history
Fix stack overflow bug for `examples/bluetooth/esp_hid_device` when using esp32s3 with nimble (GitHub PR) (v5.2)

See merge request espressif/esp-idf!31516
  • Loading branch information
rahult-github committed Jun 14, 2024
2 parents 771ae77 + fd4df8d commit 9653c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp_hid/src/nimble_hidd.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,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
};
rc = esp_event_loop_create(&event_task_args, &s_dev->event_loop_handle);
Expand Down

0 comments on commit 9653c70

Please # to comment.