-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshm_data.h
More file actions
74 lines (63 loc) · 1.28 KB
/
shm_data.h
File metadata and controls
74 lines (63 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef RDDA_SHM_DATA_H
#define RDDA_SHM_DATA_H
#include <stdint.h>
#include <pthread.h>
/** BEL drive CSP Mode inputs to master */
typedef struct {
double act_pos;
double act_vel;
double act_tau;
} MotorIn;
/* Information sent to ROS interface */
typedef struct {
int contact_flag;
} RosIn;
/** BEL drive CSP Mode outputs from master */
typedef struct {
double tg_pos;
double vel_off;
double tau_off;
} MotorOut;
/* Reference signals from ROS interface */
typedef struct {
double pos_ref;
double vel_sat;
double tau_sat;
double stiffness;
} RosOut;
/** EL3102 pressure sensor inputs to master */
typedef struct {
double val1;
double val2;
} AnalogIn;
/** BEL slave class */
typedef struct {
MotorIn motorIn;
MotorOut motorOut;
RosIn rosIn;
RosOut rosOut;
/* Constant */
double tau_max;
double init_pos;
/* SDO */
int Pp;
int Vp;
} BEL_slave;
/** EL3102 slave class */
typedef struct {
AnalogIn analogIn;
} EL3102_slave;
/** Timestamp */
typedef struct {
int64_t sec;
int64_t nsec;
} Timestamp;
/** EtherCAT slave class */
typedef struct {
BEL_slave motor[2];
EL3102_slave psensor;
double freq_anti_alias;
Timestamp ts;
pthread_mutex_t mutex;
} Rdda;
#endif //RDDA_SHM_DATA_H