fastcat 0.13.15
C++ EtherCAT Device Command & Control Library
Loading...
Searching...
No Matches
el1008.h
Go to the documentation of this file.
1#ifndef FASTCAT_EL1008_H_
2#define FASTCAT_EL1008_H_
3
4// Include related header (for cc files)
5
6// Include c then c++ libraries
7
8// Include external then project includes
9#include "fastcat/jsd/jsd_device_base.h"
10#include "jsd/jsd_el1008_pub.h"
11
12namespace fastcat
13{
14class El1008 : public JsdDeviceBase
15{
16 public:
17 El1008();
18 bool ConfigFromYaml(const YAML::Node& node) override;
19 bool Read() override;
20
21 protected:
22 bool ConfigFromYamlCommon(const YAML::Node& node);
23
24 private:
25 jsd_slave_config_t jsd_slave_config_{0};
26};
27
28} // namespace fastcat
29
30#endif
Definition el1008.h:15
bool Read() override
Definition el1008.cc:38
bool ConfigFromYaml(const YAML::Node &node) override
Definition el1008.cc:17
El1008()
Definition el1008.cc:9
bool ConfigFromYamlCommon(const YAML::Node &node)
Definition el1008.cc:24
Definition jsd_device_base.h:16
Definition device_base.h:18