Fix stack overflow bug for `examples/bluetooth/esp_hid_device` when using esp32s3 with nimble

Related to 60354c39a9
pull/13951/head
Mohammad-Mohsen Aseman-Manzar 2024-06-11 16:13:34 +03:30 zatwierdzone przez GitHub
rodzic 8760e6d2a7
commit 51fb928d4b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -657,7 +657,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);