fix(examples): tusb_midi task stack overflow fix

This commit is contained in:
Adam Múdry
2024-11-14 13:03:27 +01:00
parent 38b737511c
commit 7e9782b67e

View File

@@ -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);
}