Skip to content

Commit

Permalink
[BT] Fix stack overflow in bt_fb_task
Browse files Browse the repository at this point in the history
  • Loading branch information
darthcloud committed Aug 12, 2023
1 parent a2bd755 commit 729dc6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/bluetooth/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ int32_t bt_host_init(void) {
bt_host_load_le_keys_from_file(&bt_host_le_link_keys);

xTaskCreatePinnedToCore(&bt_host_task, "bt_host_task", 3072, NULL, 5, NULL, 0);
xTaskCreatePinnedToCore(&bt_fb_task, "bt_fb_task", 2048, NULL, 10, NULL, 0);
xTaskCreatePinnedToCore(&bt_fb_task, "bt_fb_task", 3072, NULL, 10, NULL, 0);
xTaskCreatePinnedToCore(&bt_tx_task, "bt_tx_task", 2048, NULL, 11, NULL, 0);

if (bt_hci_init()) {
Expand Down

0 comments on commit 729dc6b

Please sign in to comment.