We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dcfb2e commit 21e38b9Copy full SHA for 21e38b9
src/displayapp/DisplayApp.cpp
@@ -125,6 +125,7 @@ void DisplayApp::Start(System::BootErrors error) {
125
bootError = error;
126
127
lvgl.Init();
128
+ InitHw();
129
130
if (error == System::BootErrors::TouchController) {
131
LoadNewScreen(Apps::Error, DisplayApp::FullRefreshDirections::None);
@@ -140,7 +141,6 @@ void DisplayApp::Start(System::BootErrors error) {
140
141
void DisplayApp::Process(void* instance) {
142
auto* app = static_cast<DisplayApp*>(instance);
143
NRF_LOG_INFO("displayapp task started!");
- app->InitHw();
144
145
while (true) {
146
app->Refresh();
0 commit comments