Skip to content

Commit

Permalink
Increase stack side in sdout task #235
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartpittaway committed Aug 30, 2023
1 parent 555447c commit 863f76a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ESPController/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3867,7 +3867,7 @@ ESP32 Chip model = %u, Rev %u, Cores=%u, Features=%u)",
// High priority task
xTaskCreate(interrupt_task, "int", 2050, nullptr, configMAX_PRIORITIES - 1, &interrupt_task_handle);
xTaskCreate(sdcardlog_task, "sdlog", 3800, nullptr, 0, &sdcardlog_task_handle);
xTaskCreate(sdcardlog_outputs_task, "sdout", 3000, nullptr, 0, &sdcardlog_outputs_task_handle);
xTaskCreate(sdcardlog_outputs_task, "sdout", 3200, nullptr, 0, &sdcardlog_outputs_task_handle);
xTaskCreate(rule_state_change_task, "r_stat", 3000, nullptr, 0, &rule_state_change_task_handle);

xTaskCreate(rs485_tx, "485_TX", 2940, nullptr, 1, &rs485_tx_task_handle);
Expand Down

0 comments on commit 863f76a

Please sign in to comment.