A stack overflow in task USB MSC has been detected
We suddenly started getting the following error when inserting a USB memory stick “***ERROR*** A stack overflow in task USB MSC has been detected.”
Changing .stack_size from 2048 to 3072 fixed it:
const msc_host_driver_config_t msc_config = {
.create_backround_task = true,
.task_priority = 5,
.stack_size = 3072,
.callback = MscEventCallback,
};
ESP_ERROR_CHECK( msc_host_install(&msc_config) );
