summaryrefslogtreecommitdiff
path: root/src/Components/Ble/BleController.cpp
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2020-10-04 10:21:22 (GMT)
committerGitHub <noreply@github.com>2020-10-04 10:21:22 (GMT)
commit39954bbd3afb592a0c3109e3479594183e8d0778 (patch)
tree58efd04aa38b8dc7989c51fe3c9cdb9a3fb46a54 /src/Components/Ble/BleController.cpp
parent5adc97702c326d0252df6da75ce4ac244a4b3553 (diff)
parent6c86d1d9d706706fcb6f214aba8259e61ed68755 (diff)
Merge pull request #68 from Avamander/patch-1
Rename folders to follow a consistent style
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;
-}
-
-