summaryrefslogtreecommitdiff
path: root/src/displayapp/DisplayApp.cpp
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-03-26 03:11:04 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-03-26 03:25:17 (GMT)
commit8b7bbf4b84a008e42a0ebba8af316690af696d5b (patch)
tree21bcfb4f4da4b3f6b3ebb21d6dd85f080f8cecd3 /src/displayapp/DisplayApp.cpp
parent1589e31b71b0f45eebd6fb95b53248a156821abb (diff)
compactify app list
Diffstat (limited to 'src/displayapp/DisplayApp.cpp')
-rw-r--r--src/displayapp/DisplayApp.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp
index db9d253..5db479c 100644
--- a/src/displayapp/DisplayApp.cpp
+++ b/src/displayapp/DisplayApp.cpp
@@ -1,7 +1,6 @@
#include "displayapp/DisplayApp.h"
#include <libraries/log/nrf_log.h>
#include "displayapp/screens/HeartRate.h"
-#include "displayapp/screens/Motion.h"
#include "displayapp/screens/Alarm.h"
#include "components/battery/BatteryController.h"
#include "components/ble/BleController.h"
@@ -375,9 +374,6 @@ void DisplayApp::LoadApp(Apps app) {
case Apps::HeartRate:
currentScreen = std::make_unique<Screens::HeartRate>(this, heartRateController, *systemTask);
break;
- case Apps::Motion:
- currentScreen = std::make_unique<Screens::Motion>(this, motionController);
- break;
case Apps::Steps:
currentScreen = std::make_unique<Screens::Steps>(this, motionController, settingsController);
break;