mirror of
https://github.com/luc-github/ESP3DLib.git
synced 2026-03-12 10:56:53 +01:00
Dev (#16)
* Fix OTA size calculation wrong on big flash * Simplify wait function * Reduce ESP3DLib memory in task * Fix no compilation with latest bugfix * really test commit during travis test
This commit is contained in:
@@ -58,11 +58,11 @@ void Esp3DLib::init()
|
||||
xTaskCreatePinnedToCore(
|
||||
ESP3DLibTaskfn, /* Task function. */
|
||||
"ESP3DLib Task", /* name of task. */
|
||||
10000, /* Stack size of task */
|
||||
8192, /* Stack size of task */
|
||||
NULL, /* parameter of the task */
|
||||
ESP3DLIB_RUNNING_PRIORITY, /* priority of the task */
|
||||
NULL, /* Task handle to keep track of created task */
|
||||
ESP3DLIB_RUNNING_CORE /* Core to run the task */
|
||||
ESP3DLIB_RUNNING_CORE /* Core to run the task */
|
||||
);
|
||||
}
|
||||
//Parse command
|
||||
|
||||
Reference in New Issue
Block a user