-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathactions.cpp
More file actions
255 lines (223 loc) · 4.82 KB
/
actions.cpp
File metadata and controls
255 lines (223 loc) · 4.82 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#include "header.h"
// the Arbotix-M might be off or initializing, so keep sending the request
// until you hear something back
bool confirmArbotixConnection (serial *ser, hexapod *hex)
{
int attempts, ii;
float pos;
packet *pack, *pack2;
pack = new packet(16, 'A');
pack->data[0] = 0x05;
pack->data[1] = 0x01;
pack->data[2] = 'U';
ser->send(pack, true);
usleep(500*1000);
pack2 = NULL;
attempts = 0;
while ((pack2 = ser->recv('U', 0x01, false)) == NULL && attempts < 10)
{
attempts ++;
ser->send(pack, true);
sleep(1);
}
delete pack;
if (attempts==10) return false;
// let the hex library know where the actual servos are right now
for (ii=0; ii<18; ii++)
{
memcpy(&pos, pack2->data+1+ii*(sizeof(float)+sizeof(uint8_t)),
sizeof(float));
hex->servoangle[ii] = pos;
}
hex->setAngles();
delete pack2;
return true;
}
scan* getLIDARData (serial *ser, bool blocking)
{
uint16_t d, ii;
uint8_t lidar_index;
float fd;
int num;
scan *s;
packet *pack, *recv;
// first, check for a packet that's already waiting
if ((recv = ser->recv('U', 0x02, false)) == NULL)
{
// no packet found, send request
pack = new packet(16, 'D');
pack->data[0] = 0x02; // command byte, lidar data request
ser->send(pack, true);
delete pack;
if (blocking)
{
// wait for result
while ((recv = ser->recv('U', 0x02, true,0.5)) == NULL)
ser->send(pack, true);
// while ((recv = ser->recv('U', 0x02, false)) == NULL)
// usleep(1000);
} else {
// no immediate data, no blocking
// so no data updated
return NULL;
}
}
// we have a packet, parse it!
num = 0;
lidar_index = recv->data[1];
for (ii=0; ii<40; ii++)
{
memcpy(&d, &(recv->data[2+ii*2]), sizeof(uint16_t));
fd = d*0.1; // turn into cm;
// data culling
if (fd >= 10.0) num++;
}
s = new scan(num);
num = 0;
for (ii=0; ii<40; ii++)
{
memcpy(&d, &(recv->data[2+ii*2]), sizeof(uint16_t));
fd = d*0.1; // turn into cm;
// data culling
if (fd >= 10.0)
{
s->angle[num] = (ii*9+lidar_index)*PI/180.;
s->dist[num] = fd;
s->weight[num] = 1.0;
num++;
}
}
delete recv;
return s;
}
void setLIDARSpin (serial *ser, bool enabled)
{
packet *pack;
pack = new packet(32, 'D');
pack->data[0] = 0x01; // command byte, lidar enable/disable
if (enabled)
pack->data[1] = 0x01; // value: on
else
pack->data[1] = 0x00;
pack->data[2] = 'U'; // return, udoo
ser->send(pack, true);
delete pack;
}
void sendServoPositions (hexapod *hex, serial *ser)
{
int ii;
float pos;
packet *pack;
pack = new packet(96, 'A');
pack->data[0] = 0x01; // set servo positions
// package positions
for (ii=0; ii<18; ii++)
{
pos = hex->servoangle[ii];
memcpy(pack->data+1+(ii)*sizeof(float),
&pos, sizeof(float));
}
ser->send(pack, true);
delete pack;
}
void disableServos (serial *ser)
{
int ii;
packet *pack;
pack = new packet(18, 'A');
pack->data[0] = 0x03;
for (ii=0; ii<18; ii++)
pack->data[ii+1] = 0x00;
ser->send(pack, true);
delete pack;
}
void enableServos (serial *ser)
{
int ii;
packet *pack;
pack = new packet(18, 'A');
pack->data[0] = 0x03;
for (ii=0; ii<18; ii++)
pack->data[ii+1] = 0x01;
ser->send(pack, true);
delete pack;
}
void performSafeStand (hexapod *hex, serial *ser)
{
int ii;
float pos;
double lasttime, dt;
packet *pack;
pack = new packet(96, 'A');
pack->data[0] = 0x01; // set servo positions
lasttime = getTime();
// begin a safeStand operation
hex->safeStand();
while (hex->ssrunning)
{
dt = (getTime() - lasttime);
lasttime = getTime();
hex->step(dt);
// package positions
for (ii=0; ii<18; ii++)
{
pos = hex->servoangle[ii];
memcpy(pack->data+1+ii*sizeof(float),
&pos, sizeof(float));
}
ser->send(pack, true);
usleep(20*1000);
}
delete pack;
}
void performRaceFinish (hexapod *hex, serial *ser)
{
int ii;
float pos;
double lasttime, dt, inittime;
packet *pack;
pack = new packet(96, 'A');
pack->data[0] = 0x01; // set servo positions
inittime = getTime();
lasttime = inittime;
// first 2 seconds, slow down
hex->speed = 0.0;
hex->turning = 0.0;
while (getTime() - inittime < 2.0)
{
dt = (getTime() - lasttime);
lasttime = getTime();
hex->step(dt);
// send positions
for (ii=0; ii<18; ii++)
{
pos = hex->servoangle[ii];
memcpy(pack->data+1+ii*sizeof(float),
&pos, sizeof(float));
}
ser->send(pack, true);
usleep(20*1000);
}
inittime = getTime();
lasttime = inittime;
// do a little dance!
while (getTime()-inittime < 4.0)
{
dt = (getTime() - lasttime);
lasttime = getTime();
// oscillate once per second
hex->standheight = 2.0*cos((lasttime - inittime)*2.*PI);
hex->step(dt);
// package positions
for (ii=0; ii<18; ii++)
{
pos = hex->servoangle[ii];
memcpy(pack->data+1+ii*sizeof(float),
&pos, sizeof(float));
}
ser->send(pack, true);
usleep(20*1000);
}
usleep(100*1000);
delete pack;
}