-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht3pipeline.h
56 lines (48 loc) · 1.37 KB
/
t3pipeline.h
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
#ifndef CUSTOM_PDO_NAME_H
#define CUSTOM_PDO_NAME_H
//-------------------------------------------------------------------//
// //
// This file has been created by the Easy Configurator tool //
// //
// Easy Configurator project t3pipeline.prj
// //
//-------------------------------------------------------------------//
#define CUST_BYTE_NUM_OUT 0
#define CUST_BYTE_NUM_IN 68
#define TOT_BYTE_NUM_ROUND_OUT 0
#define TOT_BYTE_NUM_ROUND_IN 68
typedef union //---- output buffer ----
{
uint8_t Byte [TOT_BYTE_NUM_ROUND_OUT];
struct
{
}Cust;
} PROCBUFFER_OUT;
typedef union //---- input buffer ----
{
uint8_t Byte [TOT_BYTE_NUM_ROUND_IN];
struct
{
float posx;
float posy;
float posz;
float q1;
float q2;
float q3;
float q4;
float rs1;
float rs2;
float rs3;
float rs4;
int32_t bApp_yaw;
int32_t bApp_pitch;
int32_t bApp_roll;
int16_t bApp_ax;
int16_t bApp_ay;
int16_t bApp_az;
int16_t bApp_gx;
int16_t bApp_gy;
int16_t bApp_gz;
}Cust;
} PROCBUFFER_IN;
#endif