Have the unit not immediately sleep when starting up.

custom
Robin Howard 1 year ago
parent 64b106c13e
commit ae72566c0e
  1. 2
      src/drivers/include/gpios.hpp

@ -78,7 +78,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 {

Loading…
Cancel
Save