Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00028 #ifndef SR_BOARD_0X_H
00029 #define SR_BOARD_0X_H
00030
00031 #include <sr_ronex_drivers/standard_ethercat_device.h>
00032
00033 #include <vector>
00034 using namespace std;
00035
00036
00037 class SrBoard0X : public StandardEthercatDevice
00038 {
00039 public:
00040 virtual void construct(EtherCAT_SlaveHandler *sh, int &start_address);
00041
00042 protected:
00043
00044 void packCommand(unsigned char *buffer, bool halt, bool reset);
00045 bool unpackState(unsigned char *this_buffer, unsigned char *prev_buffer);
00046 };
00047
00048 #endif
00049