summaryrefslogtreecommitdiff
path: root/src/system_fsm/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/system_fsm/include')
-rw-r--r--src/system_fsm/include/system_fsm.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/system_fsm/include/system_fsm.hpp b/src/system_fsm/include/system_fsm.hpp
index 725f2f50..f6a52019 100644
--- a/src/system_fsm/include/system_fsm.hpp
+++ b/src/system_fsm/include/system_fsm.hpp
@@ -12,7 +12,7 @@
#include "battery.hpp"
#include "database.hpp"
#include "display.hpp"
-#include "gpio_expander.hpp"
+#include "gpios.hpp"
#include "relative_wheel.hpp"
#include "samd.hpp"
#include "storage.hpp"
@@ -48,7 +48,7 @@ class SystemState : public tinyfsm::Fsm<SystemState> {
virtual void react(const StorageError&) {}
protected:
- static std::shared_ptr<drivers::GpioExpander> sGpioExpander;
+ static std::shared_ptr<drivers::Gpios> sGpios;
static std::shared_ptr<drivers::Samd> sSamd;
static std::shared_ptr<drivers::TouchWheel> sTouch;