wg0x.cpp File Reference
#include <iomanip>
#include <math.h>
#include <stddef.h>
#include <ethercat_hardware/wg0x.h>
#include <dll/ethercat_dll.h>
#include <al/ethercat_AL.h>
#include <dll/ethercat_device_addressed_telegram.h>
#include <dll/ethercat_frame.h>
#include <boost/crc.hpp>
#include <boost/static_assert.hpp>
#include <boost/make_shared.hpp>
Go to the source code of this file.
Define Documentation
#define CHECK_SAFETY_BIT |
( |
bit |
|
) |
|
Value:do { if (status & SAFETY_##bit) { \
str += prefix + #bit; \
prefix = ", "; \
} } while(0)
Definition at line 2406 of file wg0x.cpp.
#define ERR_MODE "\033[41m" |
#define ERROR_HDR "\033[41mERROR\033[0m" |
Value:{ \
TiXmlElement *c; \
attr = elt->Attribute((a)); \
if (!attr) { \
c = elt->FirstChildElement((a)); \
if (!c || !(attr = c->GetText())) { \
ROS_FATAL("Actuator is missing the attribute "#a); \
exit(EXIT_FAILURE); \
} \
} \
}
Definition at line 619 of file wg0x.cpp.
#define GOOD_MODE "\033[42m" |
#define INFO_MODE "\033[44m" |
#define STD_MODE "\033[0m" |
#define WARN_HDR "\033[43mERROR\033[0m" |
#define WARN_MODE "\033[43m" |
Function Documentation
int safe_clock_gettime |
( |
clockid_t |
clk_id, |
|
|
timespec * |
time | |
|
) |
| | |
error checking wrapper around clock_gettime
- Parameters:
-
| current | current time |
| current | start time |
- Returns:
- returns 0 for success, non-zero for failure
Definition at line 1530 of file wg0x.cpp.
safe version of usleep.
Uses nanosleep internally. Will restart sleep after begin woken by signal.
- Parameters:
-
| usec | number of microseconds to sleep for. Must be < 1000000. |
Definition at line 1549 of file wg0x.cpp.
int timediff_ms |
( |
const timespec & |
current, |
|
|
const timespec & |
start | |
|
) |
| | |
Find differece between two timespec values.
- Parameters:
-
| current | current time |
| current | start time |
- Returns:
- returns time difference (current-start) in milliseconds
Definition at line 1515 of file wg0x.cpp.
void updateIndexAndWkc |
( |
EC_Telegram * |
tg, |
|
|
EC_Logic * |
logic | |
|
) |
| | |