summaryrefslogtreecommitdiff
path: root/src/components/FirmwareValidator/FirmwareValidator.h
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/FirmwareValidator/FirmwareValidator.h
parent4daab2692692d47af24a9384eb0f402821527882 (diff)
Fixed all the includes that were broken due to the renames
Diffstat (limited to 'src/components/FirmwareValidator/FirmwareValidator.h')
-rw-r--r--src/components/FirmwareValidator/FirmwareValidator.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/components/FirmwareValidator/FirmwareValidator.h b/src/components/FirmwareValidator/FirmwareValidator.h
deleted file mode 100644
index aa576d8..0000000
--- a/src/components/FirmwareValidator/FirmwareValidator.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#pragma once
-
-#include <cstdint>
-
-namespace Pinetime {
- namespace Controllers {
- class FirmwareValidator {
- public:
- void Validate();
- bool IsValidated() const;
-
- void Reset();
- private:
- static constexpr uint32_t validBitAdress {0x7BFE8};
- static constexpr uint32_t validBitValue {1};
- };
- }
-}