summaryrefslogtreecommitdiff
path: root/src/BootErrors.h
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2021-08-18 12:23:30 (GMT)
committerRiku Isokoski <riksu9000@gmail.com>2021-08-18 12:23:30 (GMT)
commit780a811f0559a9abd000f36d3fe49cbbb233b632 (patch)
tree9dca2951bc08a8d8a9f1f81d02f505682e652f69 /src/BootErrors.h
parent9c175e2f0cd90b56818953b748c8cad3eec2eb89 (diff)
Automatic error detection
Diffstat (limited to 'src/BootErrors.h')
-rw-r--r--src/BootErrors.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/BootErrors.h b/src/BootErrors.h
new file mode 100644
index 0000000..d00418c
--- /dev/null
+++ b/src/BootErrors.h
@@ -0,0 +1,10 @@
+#pragma once
+
+namespace Pinetime {
+ namespace System {
+ enum class BootErrors {
+ None,
+ TouchController,
+ };
+ }
+}