aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2020-10-02 22:16:48 +0300
committerAvamander <avamander@gmail.com>2020-10-02 22:16:48 +0300
commit6c86d1d9d706706fcb6f214aba8259e61ed68755 (patch)
tree2f4137a9916869cee18fd01449aa83ee586b9604 /src/components
parent4daab2692692d47af24a9384eb0f402821527882 (diff)
Fixed all the includes that were broken due to the renames
Diffstat (limited to 'src/components')
-rw-r--r--src/components/battery/BatteryController.cpp (renamed from src/components/Battery/BatteryController.cpp)0
-rw-r--r--src/components/battery/BatteryController.h (renamed from src/components/Battery/BatteryController.h)0
-rw-r--r--src/components/ble/AlertNotificationClient.cpp (renamed from src/components/Ble/AlertNotificationClient.cpp)2
-rw-r--r--src/components/ble/AlertNotificationClient.h (renamed from src/components/Ble/AlertNotificationClient.h)0
-rw-r--r--src/components/ble/AlertNotificationService.cpp (renamed from src/components/Ble/AlertNotificationService.cpp)2
-rw-r--r--src/components/ble/AlertNotificationService.h (renamed from src/components/Ble/AlertNotificationService.h)0
-rw-r--r--src/components/ble/BatteryInformationService.cpp (renamed from src/components/Ble/BatteryInformationService.cpp)2
-rw-r--r--src/components/ble/BatteryInformationService.h (renamed from src/components/Ble/BatteryInformationService.h)0
-rw-r--r--src/components/ble/BleController.cpp (renamed from src/components/Ble/BleController.cpp)0
-rw-r--r--src/components/ble/BleController.h (renamed from src/components/Ble/BleController.h)0
-rw-r--r--src/components/ble/CurrentTimeClient.cpp (renamed from src/components/Ble/CurrentTimeClient.cpp)0
-rw-r--r--src/components/ble/CurrentTimeClient.h (renamed from src/components/Ble/CurrentTimeClient.h)3
-rw-r--r--src/components/ble/CurrentTimeService.cpp (renamed from src/components/Ble/CurrentTimeService.cpp)0
-rw-r--r--src/components/ble/CurrentTimeService.h (renamed from src/components/Ble/CurrentTimeService.h)3
-rw-r--r--src/components/ble/DeviceInformationService.cpp (renamed from src/components/Ble/DeviceInformationService.cpp)0
-rw-r--r--src/components/ble/DeviceInformationService.h (renamed from src/components/Ble/DeviceInformationService.h)0
-rw-r--r--src/components/ble/DfuService.cpp (renamed from src/components/Ble/DfuService.cpp)5
-rw-r--r--src/components/ble/DfuService.h (renamed from src/components/Ble/DfuService.h)0
-rw-r--r--src/components/ble/ImmediateAlertService.cpp (renamed from src/components/Ble/ImmediateAlertService.cpp)2
-rw-r--r--src/components/ble/ImmediateAlertService.h (renamed from src/components/Ble/ImmediateAlertService.h)0
-rw-r--r--src/components/ble/MusicService.cpp (renamed from src/components/Ble/MusicService.cpp)2
-rw-r--r--src/components/ble/MusicService.h (renamed from src/components/Ble/MusicService.h)0
-rw-r--r--src/components/ble/NimbleController.cpp (renamed from src/components/Ble/NimbleController.cpp)6
-rw-r--r--src/components/ble/NimbleController.h (renamed from src/components/Ble/NimbleController.h)1
-rw-r--r--src/components/ble/NotificationManager.cpp (renamed from src/components/Ble/NotificationManager.cpp)0
-rw-r--r--src/components/ble/NotificationManager.h (renamed from src/components/Ble/NotificationManager.h)0
-rw-r--r--src/components/brightness/BrightnessController.cpp (renamed from src/components/Brightness/BrightnessController.cpp)0
-rw-r--r--src/components/brightness/BrightnessController.h (renamed from src/components/Brightness/BrightnessController.h)0
-rw-r--r--src/components/datetime/DateTimeController.cpp (renamed from src/components/DateTime/DateTimeController.cpp)0
-rw-r--r--src/components/datetime/DateTimeController.h (renamed from src/components/DateTime/DateTimeController.h)0
-rw-r--r--src/components/firmwarevalidator/FirmwareValidator.cpp (renamed from src/components/FirmwareValidator/FirmwareValidator.cpp)0
-rw-r--r--src/components/firmwarevalidator/FirmwareValidator.h (renamed from src/components/FirmwareValidator/FirmwareValidator.h)0
-rw-r--r--src/components/gfx/Gfx.cpp (renamed from src/components/Gfx/Gfx.cpp)0
-rw-r--r--src/components/gfx/Gfx.h (renamed from src/components/Gfx/Gfx.h)0
34 files changed, 16 insertions, 12 deletions
diff --git a/src/components/Battery/BatteryController.cpp b/src/components/battery/BatteryController.cpp
index 571efae6..571efae6 100644
--- a/src/components/Battery/BatteryController.cpp
+++ b/src/components/battery/BatteryController.cpp
diff --git a/src/components/Battery/BatteryController.h b/src/components/battery/BatteryController.h
index f07648a9..f07648a9 100644
--- a/src/components/Battery/BatteryController.h
+++ b/src/components/battery/BatteryController.h
diff --git a/src/components/Ble/AlertNotificationClient.cpp b/src/components/ble/AlertNotificationClient.cpp
index 3e4b495f..ddc72967 100644
--- a/src/components/Ble/AlertNotificationClient.cpp
+++ b/src/components/ble/AlertNotificationClient.cpp
@@ -1,4 +1,4 @@
-#include <SystemTask/SystemTask.h>
+#include <systemtask/SystemTask.h>
#include "NotificationManager.h"
#include "AlertNotificationClient.h"
diff --git a/src/components/Ble/AlertNotificationClient.h b/src/components/ble/AlertNotificationClient.h
index ca4f4e94..ca4f4e94 100644
--- a/src/components/Ble/AlertNotificationClient.h
+++ b/src/components/ble/AlertNotificationClient.h
diff --git a/src/components/Ble/AlertNotificationService.cpp b/src/components/ble/AlertNotificationService.cpp
index ce2f7dd7..9a9b535d 100644
--- a/src/components/Ble/AlertNotificationService.cpp
+++ b/src/components/ble/AlertNotificationService.cpp
@@ -1,7 +1,7 @@
#include <hal/nrf_rtc.h>
#include "NotificationManager.h"
-#include <SystemTask/SystemTask.h>
+#include <systemtask/SystemTask.h>
#include "AlertNotificationService.h"
#include <cstring>
diff --git a/src/components/Ble/AlertNotificationService.h b/src/components/ble/AlertNotificationService.h
index 53cb44cc..53cb44cc 100644
--- a/src/components/Ble/AlertNotificationService.h
+++ b/src/components/ble/AlertNotificationService.h
diff --git a/src/components/Ble/BatteryInformationService.cpp b/src/components/ble/BatteryInformationService.cpp
index c86830b8..f7d895c2 100644
--- a/src/components/Ble/BatteryInformationService.cpp
+++ b/src/components/ble/BatteryInformationService.cpp
@@ -1,5 +1,5 @@
#include "BatteryInformationService.h"
-#include "../Battery/BatteryController.h"
+#include "components/battery/BatteryController.h"
using namespace Pinetime::Controllers;
diff --git a/src/components/Ble/BatteryInformationService.h b/src/components/ble/BatteryInformationService.h
index 74b2222c..74b2222c 100644
--- a/src/components/Ble/BatteryInformationService.h
+++ b/src/components/ble/BatteryInformationService.h
diff --git a/src/components/Ble/BleController.cpp b/src/components/ble/BleController.cpp
index 2b396e12..2b396e12 100644
--- a/src/components/Ble/BleController.cpp
+++ b/src/components/ble/BleController.cpp
diff --git a/src/components/Ble/BleController.h b/src/components/ble/BleController.h
index 3f52ea25..3f52ea25 100644
--- a/src/components/Ble/BleController.h
+++ b/src/components/ble/BleController.h
diff --git a/src/components/Ble/CurrentTimeClient.cpp b/src/components/ble/CurrentTimeClient.cpp
index 7a225f4b..7a225f4b 100644
--- a/src/components/Ble/CurrentTimeClient.cpp
+++ b/src/components/ble/CurrentTimeClient.cpp
diff --git a/src/components/Ble/CurrentTimeClient.h b/src/components/ble/CurrentTimeClient.h
index fabcdaca..639ec831 100644
--- a/src/components/Ble/CurrentTimeClient.h
+++ b/src/components/ble/CurrentTimeClient.h
@@ -1,7 +1,8 @@
#pragma once
#include <cstdint>
#include <array>
-#include <Components/DateTime/DateTimeController.h>
+
+#include "components/datetime/DateTimeController.h"
#include <host/ble_gap.h>
namespace Pinetime {
diff --git a/src/components/Ble/CurrentTimeService.cpp b/src/components/ble/CurrentTimeService.cpp
index 3a6264e2..3a6264e2 100644
--- a/src/components/Ble/CurrentTimeService.cpp
+++ b/src/components/ble/CurrentTimeService.cpp
diff --git a/src/components/Ble/CurrentTimeService.h b/src/components/ble/CurrentTimeService.h
index 58bc5ba6..a6be9647 100644
--- a/src/components/Ble/CurrentTimeService.h
+++ b/src/components/ble/CurrentTimeService.h
@@ -1,7 +1,8 @@
#pragma once
#include <cstdint>
#include <array>
-#include <Components/DateTime/DateTimeController.h>
+
+#include "components/datetime/DateTimeController.h"
#include <host/ble_gap.h>
namespace Pinetime {
diff --git a/src/components/Ble/DeviceInformationService.cpp b/src/components/ble/DeviceInformationService.cpp
index 406db1cf..406db1cf 100644
--- a/src/components/Ble/DeviceInformationService.cpp
+++ b/src/components/ble/DeviceInformationService.cpp
diff --git a/src/components/Ble/DeviceInformationService.h b/src/components/ble/DeviceInformationService.h
index 25ab8402..25ab8402 100644
--- a/src/components/Ble/DeviceInformationService.h
+++ b/src/components/ble/DeviceInformationService.h
diff --git a/src/components/Ble/DfuService.cpp b/src/components/ble/DfuService.cpp
index fcbefdd0..4dec5141 100644
--- a/src/components/Ble/DfuService.cpp
+++ b/src/components/ble/DfuService.cpp
@@ -1,6 +1,7 @@
-#include <Components/Ble/BleController.h>
-#include <SystemTask/SystemTask.h>
#include <cstring>
+
+#include "components/ble/BleController.h"
+#include "systemtask/SystemTask.h"
#include "DfuService.h"
using namespace Pinetime::Controllers;
diff --git a/src/components/Ble/DfuService.h b/src/components/ble/DfuService.h
index d7ba460c..d7ba460c 100644
--- a/src/components/Ble/DfuService.h
+++ b/src/components/ble/DfuService.h
diff --git a/src/components/Ble/ImmediateAlertService.cpp b/src/components/ble/ImmediateAlertService.cpp
index d2c4cffb..3b7f47bf 100644
--- a/src/components/Ble/ImmediateAlertService.cpp
+++ b/src/components/ble/ImmediateAlertService.cpp
@@ -1,5 +1,5 @@
+#include <systemtask/SystemTask.h>
#include "ImmediateAlertService.h"
-#include <SystemTask/SystemTask.h>
#include "AlertNotificationService.h"
using namespace Pinetime::Controllers;
diff --git a/src/components/Ble/ImmediateAlertService.h b/src/components/ble/ImmediateAlertService.h
index c42846c4..c42846c4 100644
--- a/src/components/Ble/ImmediateAlertService.h
+++ b/src/components/ble/ImmediateAlertService.h
diff --git a/src/components/Ble/MusicService.cpp b/src/components/ble/MusicService.cpp
index b5fa5356..9105a8e6 100644
--- a/src/components/Ble/MusicService.cpp
+++ b/src/components/ble/MusicService.cpp
@@ -1,4 +1,4 @@
-#include <SystemTask/SystemTask.h>
+#include <systemtask/SystemTask.h>
#include "MusicService.h"
int MSCallback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
diff --git a/src/components/Ble/MusicService.h b/src/components/ble/MusicService.h
index ab6db572..ab6db572 100644
--- a/src/components/Ble/MusicService.h
+++ b/src/components/ble/MusicService.h
diff --git a/src/components/Ble/NimbleController.cpp b/src/components/ble/NimbleController.cpp
index b13f9ce3..022cc510 100644
--- a/src/components/Ble/NimbleController.cpp
+++ b/src/components/ble/NimbleController.cpp
@@ -1,8 +1,8 @@
-#include <Components/DateTime/DateTimeController.h>
+#include "components/datetime/DateTimeController.h"
-#include <SystemTask/SystemTask.h>
-#include <Components/Ble/NotificationManager.h>
+#include <systemtask/SystemTask.h>
+#include "components/ble/NotificationManager.h"
#include <hal/nrf_rtc.h>
#include "NimbleController.h"
diff --git a/src/components/Ble/NimbleController.h b/src/components/ble/NimbleController.h
index 89fa4250..9d20caff 100644
--- a/src/components/Ble/NimbleController.h
+++ b/src/components/ble/NimbleController.h
@@ -1,6 +1,7 @@
#pragma once
#include <cstdint>
+
#include "AlertNotificationService.h"
#include "AlertNotificationClient.h"
#include "DeviceInformationService.h"
diff --git a/src/components/Ble/NotificationManager.cpp b/src/components/ble/NotificationManager.cpp
index 0aea0697..0aea0697 100644
--- a/src/components/Ble/NotificationManager.cpp
+++ b/src/components/ble/NotificationManager.cpp
diff --git a/src/components/Ble/NotificationManager.h b/src/components/ble/NotificationManager.h
index daa1571b..daa1571b 100644
--- a/src/components/Ble/NotificationManager.h
+++ b/src/components/ble/NotificationManager.h
diff --git a/src/components/Brightness/BrightnessController.cpp b/src/components/brightness/BrightnessController.cpp
index c8825d68..c8825d68 100644
--- a/src/components/Brightness/BrightnessController.cpp
+++ b/src/components/brightness/BrightnessController.cpp
diff --git a/src/components/Brightness/BrightnessController.h b/src/components/brightness/BrightnessController.h
index b8354ec0..b8354ec0 100644
--- a/src/components/Brightness/BrightnessController.h
+++ b/src/components/brightness/BrightnessController.h
diff --git a/src/components/DateTime/DateTimeController.cpp b/src/components/datetime/DateTimeController.cpp
index 30d9c13f..30d9c13f 100644
--- a/src/components/DateTime/DateTimeController.cpp
+++ b/src/components/datetime/DateTimeController.cpp
diff --git a/src/components/DateTime/DateTimeController.h b/src/components/datetime/DateTimeController.h
index d6020745..d6020745 100644
--- a/src/components/DateTime/DateTimeController.h
+++ b/src/components/datetime/DateTimeController.h
diff --git a/src/components/FirmwareValidator/FirmwareValidator.cpp b/src/components/firmwarevalidator/FirmwareValidator.cpp
index 244d5c06..244d5c06 100644
--- a/src/components/FirmwareValidator/FirmwareValidator.cpp
+++ b/src/components/firmwarevalidator/FirmwareValidator.cpp
diff --git a/src/components/FirmwareValidator/FirmwareValidator.h b/src/components/firmwarevalidator/FirmwareValidator.h
index aa576d88..aa576d88 100644
--- a/src/components/FirmwareValidator/FirmwareValidator.h
+++ b/src/components/firmwarevalidator/FirmwareValidator.h
diff --git a/src/components/Gfx/Gfx.cpp b/src/components/gfx/Gfx.cpp
index 3c5dbfb7..3c5dbfb7 100644
--- a/src/components/Gfx/Gfx.cpp
+++ b/src/components/gfx/Gfx.cpp
diff --git a/src/components/Gfx/Gfx.h b/src/components/gfx/Gfx.h
index 091f06f5..091f06f5 100644
--- a/src/components/Gfx/Gfx.h
+++ b/src/components/gfx/Gfx.h