Skip to content

Commit

Permalink
Merge branch 'fix/tusb_midi_task_stack_overflow_v5.2' into 'release/v…
Browse files Browse the repository at this point in the history
…5.2'

fix(examples): tusb_midi task stack overflow fix (v5.2)

See merge request espressif/esp-idf!34935
  • Loading branch information
Jiang Jiang Jian committed Jan 16, 2025
2 parents 02935a7 + e58de4f commit 0bdb71f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,5 @@ void app_main(void)

// Read recieved MIDI packets
ESP_LOGI(TAG, "MIDI read task init");
xTaskCreate(midi_task_read_example, "midi_task_read_example", 2 * 1024, NULL, 5, NULL);
xTaskCreate(midi_task_read_example, "midi_task_read_example", 4 * 1024, NULL, 5, NULL);
}

0 comments on commit 0bdb71f

Please sign in to comment.