summaryrefslogtreecommitdiff
path: root/src/components/ble/MotionService.cpp
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2022-02-20 14:45:59 +0100
committerJF <JF002@users.noreply.github.com>2022-03-08 20:28:54 +0100
commit5fe5cee9ef76fdb57810a4434517ebc6442393fb (patch)
tree31b03d9462d667af66c351b4c3e968fc9224f175 /src/components/ble/MotionService.cpp
parent30797b37bc509b24c86364f6d7b55be642a6dfb4 (diff)
Add missing nrf_log.h includes shadowed by SystemMonitor.h
Some components were missing a `nrf_log.h` include. This missing include was accidentally provided by the SystemMonitor.h header, which was included by Systemtask.h
Diffstat (limited to 'src/components/ble/MotionService.cpp')
-rw-r--r--src/components/ble/MotionService.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/ble/MotionService.cpp b/src/components/ble/MotionService.cpp
index 6381915d..87923c23 100644
--- a/src/components/ble/MotionService.cpp
+++ b/src/components/ble/MotionService.cpp
@@ -1,6 +1,7 @@
#include "components/ble/MotionService.h"
#include "components/motion/MotionController.h"
#include "systemtask/SystemTask.h"
+#include <nrf_log.h>
using namespace Pinetime::Controllers;