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_RONEX_DRIVERS_SR_BOARD_0X_H
00029 #define SR_RONEX_DRIVERS_SR_BOARD_0X_H
00030
00031 #include <sr_ronex_drivers/standard_ethercat_device.h>
00032
00033 #include <vector>
00034
00035
00036 class SrBoard0X : public StandardEthercatDevice
00037 {
00038 public:
00039 virtual void construct(EtherCAT_SlaveHandler *sh, int &start_address);
00040
00041 protected:
00042 void packCommand(unsigned char *buffer, bool halt, bool reset);
00043 bool unpackState(unsigned char *this_buffer, unsigned char *prev_buffer);
00044 };
00045
00046 #endif // SR_RONEX_DRIVERS_SR_BOARD_0X_H
00047