summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2020-10-02 18:44:27 (GMT)
committerAvamander <avamander@gmail.com>2020-10-02 18:44:27 (GMT)
commit40a643d203d2d21834dd2b35d83419a56a3939b6 (patch)
tree522947ffe2e7c10f6e8c45a6e7d1e58d3521829b
parent455d8319e4af521de4e24cfa423a4c06c4378a8d (diff)
Renamed Components/ to components/
-rw-r--r--src/CMakeLists.txt62
-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)0
-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)0
-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)0
-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)0
-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)0
-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)0
-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)0
-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)0
-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)0
-rw-r--r--src/components/Ble/NimbleController.h (renamed from src/Components/Ble/NimbleController.h)0
-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
35 files changed, 31 insertions, 31 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 1b5cdcb..f536631 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -349,22 +349,22 @@ list(APPEND SOURCE_FILES
drivers/Watchdog.cpp
drivers/DebugPins.cpp
drivers/InternalFlash.cpp
- Components/Battery/BatteryController.cpp
- Components/Ble/BleController.cpp
- Components/Ble/NotificationManager.cpp
- Components/DateTime/DateTimeController.cpp
- Components/Brightness/BrightnessController.cpp
- Components/Ble/NimbleController.cpp
- Components/Ble/DeviceInformationService.cpp
- Components/Ble/CurrentTimeClient.cpp
- Components/Ble/AlertNotificationClient.cpp
- Components/Ble/DfuService.cpp
- Components/Ble/CurrentTimeService.cpp
- Components/Ble/AlertNotificationService.cpp
- Components/Ble/MusicService.cpp
- Components/Ble/BatteryInformationService.cpp
- Components/Ble/ImmediateAlertService.cpp
- Components/FirmwareValidator/FirmwareValidator.cpp
+ components/Battery/BatteryController.cpp
+ components/Ble/BleController.cpp
+ components/Ble/NotificationManager.cpp
+ components/DateTime/DateTimeController.cpp
+ components/Brightness/BrightnessController.cpp
+ components/Ble/NimbleController.cpp
+ components/Ble/DeviceInformationService.cpp
+ components/Ble/CurrentTimeClient.cpp
+ components/Ble/AlertNotificationClient.cpp
+ components/Ble/DfuService.cpp
+ components/Ble/CurrentTimeService.cpp
+ components/Ble/AlertNotificationService.cpp
+ components/Ble/MusicService.cpp
+ components/Ble/BatteryInformationService.cpp
+ components/Ble/ImmediateAlertService.cpp
+ components/FirmwareValidator/FirmwareValidator.cpp
drivers/Cst816s.cpp
FreeRTOS/port.c
FreeRTOS/port_cmsis_systick.c
@@ -389,9 +389,9 @@ list(APPEND GRAPHICS_SOURCE_FILES
drivers/Spi.cpp
Logging/NrfLogger.cpp
- Components/Gfx/Gfx.cpp
+ components/Gfx/Gfx.cpp
drivers/St7789.cpp
- Components/Brightness/BrightnessController.cpp
+ components/Brightness/BrightnessController.cpp
graphics.cpp
)
@@ -426,19 +426,19 @@ set(INCLUDE_FILES
drivers/Watchdog.h
drivers/DebugPins.h
drivers/InternalFlash.h
- Components/Battery/BatteryController.h
- Components/Ble/BleController.h
- Components/Ble/NotificationManager.h
- Components/DateTime/DateTimeController.h
- Components/Brightness/BrightnessController.h
- Components/Ble/NimbleController.h
- Components/Ble/DeviceInformationService.h
- Components/Ble/CurrentTimeClient.h
- Components/Ble/AlertNotificationClient.h
- Components/Ble/DfuService.h
- Components/FirmwareValidator/FirmwareValidator.h
- Components/Ble/BatteryInformationService.h
- Components/Ble/ImmediateAlertService.h
+ components/Battery/BatteryController.h
+ components/Ble/BleController.h
+ components/Ble/NotificationManager.h
+ components/DateTime/DateTimeController.h
+ components/Brightness/BrightnessController.h
+ components/Ble/NimbleController.h
+ components/Ble/DeviceInformationService.h
+ components/Ble/CurrentTimeClient.h
+ components/Ble/AlertNotificationClient.h
+ components/Ble/DfuService.h
+ components/FirmwareValidator/FirmwareValidator.h
+ components/Ble/BatteryInformationService.h
+ components/Ble/ImmediateAlertService.h
drivers/Cst816s.h
FreeRTOS/portmacro.h
FreeRTOS/portmacro_cmsis.h
diff --git a/src/Components/Battery/BatteryController.cpp b/src/components/Battery/BatteryController.cpp
index 571efae..571efae 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 f07648a..f07648a 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 3e4b495..3e4b495 100644
--- a/src/Components/Ble/AlertNotificationClient.cpp
+++ b/src/components/Ble/AlertNotificationClient.cpp
diff --git a/src/Components/Ble/AlertNotificationClient.h b/src/components/Ble/AlertNotificationClient.h
index ca4f4e9..ca4f4e9 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 ce2f7dd..ce2f7dd 100644
--- a/src/Components/Ble/AlertNotificationService.cpp
+++ b/src/components/Ble/AlertNotificationService.cpp
diff --git a/src/Components/Ble/AlertNotificationService.h b/src/components/Ble/AlertNotificationService.h
index 53cb44c..53cb44c 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 c86830b..c86830b 100644
--- a/src/Components/Ble/BatteryInformationService.cpp
+++ b/src/components/Ble/BatteryInformationService.cpp
diff --git a/src/Components/Ble/BatteryInformationService.h b/src/components/Ble/BatteryInformationService.h
index 74b2222..74b2222 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 2b396e1..2b396e1 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 3f52ea2..3f52ea2 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 7a225f4..7a225f4 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 fabcdac..fabcdac 100644
--- a/src/Components/Ble/CurrentTimeClient.h
+++ b/src/components/Ble/CurrentTimeClient.h
diff --git a/src/Components/Ble/CurrentTimeService.cpp b/src/components/Ble/CurrentTimeService.cpp
index 3a6264e..3a6264e 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 58bc5ba..58bc5ba 100644
--- a/src/Components/Ble/CurrentTimeService.h
+++ b/src/components/Ble/CurrentTimeService.h
diff --git a/src/Components/Ble/DeviceInformationService.cpp b/src/components/Ble/DeviceInformationService.cpp
index 406db1c..406db1c 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 25ab840..25ab840 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 fcbefdd..fcbefdd 100644
--- a/src/Components/Ble/DfuService.cpp
+++ b/src/components/Ble/DfuService.cpp
diff --git a/src/Components/Ble/DfuService.h b/src/components/Ble/DfuService.h
index d7ba460..d7ba460 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 d2c4cff..d2c4cff 100644
--- a/src/Components/Ble/ImmediateAlertService.cpp
+++ b/src/components/Ble/ImmediateAlertService.cpp
diff --git a/src/Components/Ble/ImmediateAlertService.h b/src/components/Ble/ImmediateAlertService.h
index c42846c..c42846c 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 b5fa535..b5fa535 100644
--- a/src/Components/Ble/MusicService.cpp
+++ b/src/components/Ble/MusicService.cpp
diff --git a/src/Components/Ble/MusicService.h b/src/components/Ble/MusicService.h
index ab6db57..ab6db57 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 b13f9ce..b13f9ce 100644
--- a/src/Components/Ble/NimbleController.cpp
+++ b/src/components/Ble/NimbleController.cpp
diff --git a/src/Components/Ble/NimbleController.h b/src/components/Ble/NimbleController.h
index 89fa425..89fa425 100644
--- a/src/Components/Ble/NimbleController.h
+++ b/src/components/Ble/NimbleController.h
diff --git a/src/Components/Ble/NotificationManager.cpp b/src/components/Ble/NotificationManager.cpp
index 0aea069..0aea069 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 daa1571..daa1571 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 c8825d6..c8825d6 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 b8354ec..b8354ec 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 30d9c13..30d9c13 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 d602074..d602074 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 244d5c0..244d5c0 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 aa576d8..aa576d8 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 3c5dbfb..3c5dbfb 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 091f06f..091f06f 100644
--- a/src/Components/Gfx/Gfx.h
+++ b/src/components/Gfx/Gfx.h