summaryrefslogtreecommitdiff
path: root/src/displayapp
diff options
context:
space:
mode:
authorJoaquim <joaquim.org@gmail.com>2021-04-09 09:29:29 +0100
committerJoaquim <joaquim.org@gmail.com>2021-04-09 09:29:29 +0100
commit3685095da0d01f137692f80df2c267a8b90da715 (patch)
treefaba85ae868a92deb8ac6a76fb493285484cc24c /src/displayapp
parent3cf4df905a20a51939141430e155c9d8e6623e30 (diff)
add more memory to displayapp task
Diffstat (limited to 'src/displayapp')
-rw-r--r--src/displayapp/DisplayApp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp
index 90473510..712d8be2 100644
--- a/src/displayapp/DisplayApp.cpp
+++ b/src/displayapp/DisplayApp.cpp
@@ -61,7 +61,7 @@ DisplayApp::DisplayApp(Drivers::St7789 &lcd, Components::LittleVgl &lvgl, Driver
}
void DisplayApp::Start() {
- if (pdPASS != xTaskCreate(DisplayApp::Process, "displayapp", 512, this, 0, &taskHandle))
+ if (pdPASS != xTaskCreate(DisplayApp::Process, "displayapp", 800, this, 0, &taskHandle))
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
}