summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2020-10-02 21:44:27 +0300
committerAvamander <avamander@gmail.com>2020-10-02 21:44:27 +0300
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 1b5cdcbe..f5366314 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 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..3e4b495f 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 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..ce2f7dd7 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 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..c86830b8 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 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..fabcdaca 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 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..58bc5ba6 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 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..fcbefdd0 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 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..d2c4cffb 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 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..b5fa5356 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 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..b13f9ce3 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 89fa4250..89fa4250 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 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