summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/include/gpios.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/include/gpios.hpp b/src/drivers/include/gpios.hpp
index fffd1f75..55486be7 100644
--- a/src/drivers/include/gpios.hpp
+++ b/src/drivers/include/gpios.hpp
@@ -79,7 +79,7 @@ class IGpios {
*/
virtual auto Get(Pin) const -> bool = 0;
- virtual auto IsLocked() const -> bool { return !Get(Pin::kKeyLock); }
+ virtual auto IsLocked() const -> bool { return Get(Pin::kKeyLock); }
};
class Gpios : public IGpios {