summaryrefslogtreecommitdiff
path: root/src/components/Ble/BleController.cpp
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2020-10-02 19:16:48 (GMT)
committerAvamander <avamander@gmail.com>2020-10-02 19:16:48 (GMT)
commit6c86d1d9d706706fcb6f214aba8259e61ed68755 (patch)
tree2f4137a9916869cee18fd01449aa83ee586b9604 /src/components/Ble/BleController.cpp
parent4daab2692692d47af24a9384eb0f402821527882 (diff)
Fixed all the includes that were broken due to the renames
Diffstat (limited to 'src/components/Ble/BleController.cpp')
-rw-r--r--src/components/Ble/BleController.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/components/Ble/BleController.cpp b/src/components/Ble/BleController.cpp
deleted file mode 100644
index 2b396e1..0000000
--- a/src/components/Ble/BleController.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#include <cstring>
-#include <cstdlib>
-#include "BleController.h"
-
-using namespace Pinetime::Controllers;
-
-void Ble::Connect() {
- isConnected = true;
-}
-
-void Ble::Disconnect() {
- isConnected = false;
-}
-
-void Ble::StartFirmwareUpdate() {
- isFirmwareUpdating = true;
-}
-
-void Ble::StopFirmwareUpdate() {
- isFirmwareUpdating = false;
-}
-
-void Ble::FirmwareUpdateTotalBytes(uint32_t totalBytes) {
- firmwareUpdateTotalBytes = totalBytes;
-}
-
-void Ble::FirmwareUpdateCurrentBytes(uint32_t currentBytes) {
- firmwareUpdateCurrentBytes = currentBytes;
-}
-
-