Motorcortex Core  version: 2.7.6
wd_gpio.h
1 /*
2  * Developer : Alexey Zakharov (alexey.zakharov@vectioneer.com)
3  * All rights reserved. Copyright (c) 2018 VECTIONEER.
4  */
5 
6 #ifndef MOTORCORTEX_CORE_WD_GPIO_H
7 #define MOTORCORTEX_CORE_WD_GPIO_H
8 
9 #include "wd_base.h"
10 
11 namespace mcx {
12 
13 namespace watchdog {
14 
15 class WatchdogGpio : public WatchdogBase {
16 public:
17 
18  WatchdogGpio();
19  bool open(const char* device) override;
20  void update(const WatchdogIn& in, WatchdogOut* out) override;
21 
22 private:
23 
24 };
25 
26 } // namespace watchdog
27 
28 } // namespace mcx
29 
30 #endif //MOTORCORTEX_CORE_WD_MODULE_H
mcx::watchdog::WatchdogGpio
Definition: wd_gpio.h:15
mcx::watchdog::WatchdogBase
Definition: wd_base.h:29
mcx::watchdog::WatchdogIn
Definition: wd_base.h:13
mcx::watchdog::WatchdogOut
Definition: wd_base.h:20