mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
fix(examples): tusb_midi task stack overflow fix
This commit is contained in:
@ -181,5 +181,5 @@ void app_main(void)
|
|||||||
|
|
||||||
// Read received MIDI packets
|
// Read received MIDI packets
|
||||||
ESP_LOGI(TAG, "MIDI read task init");
|
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