diff options
| author | Reinhold Gschweicher <pyro4hell@gmail.com> | 2022-02-20 13:45:59 (GMT) |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2022-03-08 19:28:54 (GMT) |
| commit | 5fe5cee9ef76fdb57810a4434517ebc6442393fb (patch) | |
| tree | 31b03d9462d667af66c351b4c3e968fc9224f175 /src | |
| parent | 30797b37bc509b24c86364f6d7b55be642a6dfb4 (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')
| -rw-r--r-- | src/components/ble/AlertNotificationClient.cpp | 1 | ||||
| -rw-r--r-- | src/components/ble/DfuService.cpp | 1 | ||||
| -rw-r--r-- | src/components/ble/HeartRateService.cpp | 1 | ||||
| -rw-r--r-- | src/components/ble/MotionService.cpp | 1 | ||||
| -rw-r--r-- | src/components/ble/NimbleController.cpp | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/src/components/ble/AlertNotificationClient.cpp b/src/components/ble/AlertNotificationClient.cpp index 0f85087..335845e 100644 --- a/src/components/ble/AlertNotificationClient.cpp +++ b/src/components/ble/AlertNotificationClient.cpp @@ -2,6 +2,7 @@ #include <algorithm> #include "components/ble/NotificationManager.h" #include "systemtask/SystemTask.h" +#include <nrf_log.h> using namespace Pinetime::Controllers; constexpr ble_uuid16_t AlertNotificationClient::ansServiceUuid; diff --git a/src/components/ble/DfuService.cpp b/src/components/ble/DfuService.cpp index 71dcc7e..cf99f01 100644 --- a/src/components/ble/DfuService.cpp +++ b/src/components/ble/DfuService.cpp @@ -3,6 +3,7 @@ #include "components/ble/BleController.h" #include "drivers/SpiNorFlash.h" #include "systemtask/SystemTask.h" +#include <nrf_log.h> using namespace Pinetime::Controllers; diff --git a/src/components/ble/HeartRateService.cpp b/src/components/ble/HeartRateService.cpp index f178af7..4824a6b 100644 --- a/src/components/ble/HeartRateService.cpp +++ b/src/components/ble/HeartRateService.cpp @@ -1,6 +1,7 @@ #include "components/ble/HeartRateService.h" #include "components/heartrate/HeartRateController.h" #include "systemtask/SystemTask.h" +#include <nrf_log.h> using namespace Pinetime::Controllers; diff --git a/src/components/ble/MotionService.cpp b/src/components/ble/MotionService.cpp index 6381915..87923c2 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; diff --git a/src/components/ble/NimbleController.cpp b/src/components/ble/NimbleController.cpp index f6ab626..0be7c0f 100644 --- a/src/components/ble/NimbleController.cpp +++ b/src/components/ble/NimbleController.cpp @@ -2,6 +2,7 @@ #include <cstring> #include <hal/nrf_rtc.h> +#include <nrf_log.h> #define min // workaround: nimble's min/max macros conflict with libstdc++ #define max #include <host/ble_gap.h> |
