diff options
Diffstat (limited to 'src/ui/include')
| -rw-r--r-- | src/ui/include/ui_fsm.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/include/ui_fsm.hpp b/src/ui/include/ui_fsm.hpp index d0bb7b2f..4de9344c 100644 --- a/src/ui/include/ui_fsm.hpp +++ b/src/ui/include/ui_fsm.hpp @@ -21,7 +21,7 @@ namespace ui { class UiState : public tinyfsm::Fsm<UiState> { public: - static auto Init(drivers::GpioExpander* gpio_expander) -> bool; + static auto Init(drivers::IGpios* gpio_expander) -> bool; virtual ~UiState() {} @@ -41,7 +41,7 @@ class UiState : public tinyfsm::Fsm<UiState> { virtual void react(const system_fsm::BootComplete&) {} protected: - static drivers::GpioExpander* sGpioExpander; + static drivers::IGpios* sIGpios; static std::shared_ptr<drivers::TouchWheel> sTouchWheel; static std::shared_ptr<drivers::RelativeWheel> sRelativeWheel; static std::shared_ptr<drivers::Display> sDisplay; |
