Increase FLAC stack size to avoid overflow (#96)

This commit is contained in:
aliask
2024-08-04 05:42:29 +10:00
committed by GitHub
Unverified
parent d63f6431c5
commit 34a8c21686

View File

@@ -2090,7 +2090,7 @@ static void http_get_task(void *pvParameters) {
if (t_flac_decoder_task == NULL) {
xTaskCreatePinnedToCore(
&flac_decoder_task, "flac_decoder_task",
9 * 256, &scSet, FLAC_DECODER_TASK_PRIORITY,
10 * 256, &scSet, FLAC_DECODER_TASK_PRIORITY,
&t_flac_decoder_task,
FLAC_DECODER_TASK_CORE_ID);
}
@@ -2098,7 +2098,7 @@ static void http_get_task(void *pvParameters) {
#if TEST_DECODER_TASK
if (dec_task_handle == NULL) {
xTaskCreatePinnedToCore(
&flac_task, "flac_task", 9 * 256, &scSet,
&flac_task, "flac_task", 10 * 256, &scSet,
FLAC_TASK_PRIORITY, &dec_task_handle,
FLAC_TASK_CORE_ID);
}