mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 02:37:19 +02:00
Merge branch 'fix/tusb_midi_task_stack_overflow_v5.4' into 'release/v5.4'
fix(examples): tusb_midi task stack overflow fix (v5.4) See merge request espressif/esp-idf!34933
This commit is contained in:
@ -181,5 +181,5 @@ void app_main(void)
|
||||
|
||||
// Read received 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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user