Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2018-04-03 16:26:56 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-04-03 16:26:56 +0300
commit8f3f4431bc6db2405e82883323c64d80d07cdd87 (patch)
tree28666967f09d7a6756cb7d3feb85ce50b14030a4 /src/RTOSIface.cpp
parent7e12acb1d004ea91373d2e90b9aaee584a19d98b (diff)
Network now a separate task
The Network module is now a separate task Reduced network buffers from 8 to 6 to free up RAM FileInfoParser has its own buffer to save allocating them on multiple stacks Got rid of longWait and ClassReport
Diffstat (limited to 'src/RTOSIface.cpp')
-rw-r--r--src/RTOSIface.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/RTOSIface.cpp b/src/RTOSIface.cpp
index dbde75c2..ee9650bc 100644
--- a/src/RTOSIface.cpp
+++ b/src/RTOSIface.cpp
@@ -38,10 +38,7 @@ TaskHandle Mutex::GetHolder() const
return static_cast<TaskHandle>(xSemaphoreGetMutexHolder(handle));
}
-void Task::Create(TaskFunction_t pxTaskCode, const char * pcName, uint32_t ulStackDepth, void *pvParameters, unsigned int uxPriority, uint32_t * const puxStackBuffer)
-{
- handle = xTaskCreateStatic(pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, puxStackBuffer, &storage);
-}
+TaskBase *TaskBase::taskList = nullptr;
#else