From be42634dc9c057c20e88fd05d3b8ea87b87a7eb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20M=C3=BAdry?= Date: Thu, 14 Nov 2024 13:03:27 +0100 Subject: [PATCH] fix(examples): tusb_midi task stack overflow fix --- examples/peripherals/usb/device/tusb_midi/main/tusb_midi_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/peripherals/usb/device/tusb_midi/main/tusb_midi_main.c b/examples/peripherals/usb/device/tusb_midi/main/tusb_midi_main.c index e4af63d54b..04fe850b36 100644 --- a/examples/peripherals/usb/device/tusb_midi/main/tusb_midi_main.c +++ b/examples/peripherals/usb/device/tusb_midi/main/tusb_midi_main.c @@ -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); }