Modify stack sizes + max open files (SD) , add REST handler for heap/(stack) infos (#1751)

* Modify stack sizes+max open files,add rest handler

* Update
This commit is contained in:
Slider0007
2023-01-03 08:10:08 +01:00
committed by GitHub
parent 3a3e1dde90
commit 62a2f127b4
7 changed files with 70 additions and 12 deletions

View File

@@ -354,7 +354,7 @@ void LEDBlinkTask(int _dauer, int _anz, bool _off)
BlinkAnzahl = _anz;
BlinkOff = _off;
xTaskCreate(&task_doBlink, "task_doBlink", configMINIMAL_STACK_SIZE * 8, NULL, tskIDLE_PRIORITY+1, NULL);
xTaskCreate(&task_doBlink, "task_doBlink", 4 * 1024, NULL, tskIDLE_PRIORITY+1, NULL);
}
/////////////////////////////////////////////////////////