-
Notifications
You must be signed in to change notification settings - Fork 201
/
TMC2208_bitfields.h
179 lines (168 loc) · 3.44 KB
/
TMC2208_bitfields.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#pragma once
#pragma pack(push, 1)
namespace TMC2208_n {
struct GCONF_t {
constexpr static uint8_t address = 0x00;
union {
uint16_t sr : 10;
struct {
bool i_scale_analog : 1,
internal_rsense : 1,
en_spreadcycle : 1,
shaft : 1,
index_otpw : 1,
index_step : 1,
pdn_disable : 1,
mstep_reg_select : 1,
multistep_filt : 1,
test_mode : 1;
};
};
};
}
namespace TMC2208_n {
struct IOIN_t {
constexpr static uint8_t address = 0x06;
union {
uint32_t sr;
struct {
bool enn : 1,
: 1,
ms1 : 1,
ms2 : 1,
diag : 1,
: 1,
pdn_uart : 1,
step : 1,
sel_a : 1,
dir : 1;
uint16_t : 14;
uint8_t version : 8;
};
};
};
}
struct IOIN_2224_t {
constexpr static uint8_t address = 0x06;
union {
uint32_t sr;
struct {
bool : 1,
pdn_uart : 1,
spread : 1,
dir : 1,
enn : 1,
step : 1,
ms1 : 1,
ms2 : 1,
sel_a : 1;
uint16_t : 15;
uint8_t version : 8;
};
};
};
struct FACTORY_CONF_t {
constexpr static uint8_t address = 0x07;
union {
uint16_t sr;
struct {
uint8_t fclktrim : 5,
: 3,
ottrim : 2;
};
};
};
namespace TMC2208_n {
struct VACTUAL_t {
constexpr static uint8_t address = 0x22;
uint32_t sr;
};
}
struct MSCURACT_t {
constexpr static uint8_t address = 0x6B;
union {
uint32_t sr : 25;
struct {
int16_t cur_a : 9,
: 7,
cur_b : 9;
};
};
};
namespace TMC2208_n {
struct CHOPCONF_t {
constexpr static uint8_t address = 0x6C;
union {
uint32_t sr;
struct {
uint8_t toff : 4,
hstrt : 3,
hend : 4,
: 4,
tbl : 2;
bool vsense : 1;
uint8_t : 6,
mres : 4;
bool intpol : 1,
dedge : 1,
diss2g : 1,
diss2vs : 1;
};
};
};
struct PWMCONF_t {
constexpr static uint8_t address = 0x70;
union {
uint32_t sr;
struct {
uint8_t pwm_ofs : 8,
pwm_grad : 8,
pwm_freq : 2;
bool pwm_autoscale : 1,
pwm_autograd : 1;
uint8_t freewheel : 2,
: 2,
pwm_reg : 4,
pwm_lim : 4;
};
};
};
struct DRV_STATUS_t {
constexpr static uint8_t address = 0x6F;
union {
uint32_t sr;
struct {
bool otpw : 1,
ot : 1,
s2ga : 1,
s2gb : 1,
s2vsa : 1,
s2vsb : 1,
ola : 1,
olb : 1,
t120 : 1,
t143 : 1,
t150 : 1,
t157 : 1;
uint8_t : 4,
cs_actual : 5,
: 3,
: 6;
bool stealth : 1,
stst : 1;
};
};
};
struct PWM_SCALE_t {
constexpr static uint8_t address = 0x71;
union {
uint32_t sr;
struct {
uint8_t pwm_scale_sum : 8,
: 8;
int16_t pwm_scale_auto : 9;
};
};
};
}
#pragma pack(pop)