Subversion Repositories shark

Rev

Rev 1625 | Rev 1645 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1624 giacomo 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators: Giorgio Buttazzo <giorgio@sssup.it>
5
 *
6
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
7
 *
8
 * http://www.sssup.it
9
 * http://retis.sssup.it
10
 * http://shark.sssup.it
11
 */
12
 
13
#include "chimera.h"
14
 
15
//#define DEBUG_SEND            /* Print Sent Values */
16
#define SERIAL_ON               /* Send Data using Serial Port */
17
 
18
/* Servo Tasks Constants */
19
#ifdef DUBUG_SEND
1637 giacomo 20
#define SEND_TASK_WCET 1000
1624 giacomo 21
#else
1637 giacomo 22
#define SEND_TASK_WCET 1000
1624 giacomo 23
#endif
1637 giacomo 24
#define SEND_TASK_MIT  10000
1624 giacomo 25
 
26
#define LEG_A 100.0
27
#define LEG_B  66.0
28
#define LEG_C  26.0
29
#define LEG_D  38.0
30
#define LEG_CD_2IPO 92.087      /* 2 * sqrt(LEG_C^2 + LEG_D^2) */
31
#define LEG_CD_ANG  0.600       /* arctg(LEG_C/LEG_D) in radianti */
32
 
33
const float c0 = LEG_C * LEG_C;
34
const float c1 = LEG_B * LEG_B;
35
const float c2 = LEG_B * LEG_B - LEG_A * LEG_A;
36
const float todeg = 180.0 / PI;
37
const float torad = PI / 180.0;
38
 
39
HEXAPOD_STATE   status;
40
 
41
extern struct leg_calibration calibration_table[];
42
 
43
int leg_to_ang(float px, float py, float pz, int *alfa, int *beta, int *gamma)
44
{
45
        float px2 = px * px;
46
        float py2 = py * py;
47
        float pz2 = pz * pz;
48
 
49
        float pxz2 = px2 + pz2;
50
 
51
        float alfa1,beta1,alfa2,beta2,gamma1,gamma2;
52
        float m,dsqrt;
53
 
54
        float delta_xz = pxz2 - c0;
55
        float s,k,k2,y1,delta_xy;
56
 
57
        if (delta_xz < 0.0) return -1;
58
 
59
        if (pz >= LEG_C) {
60
                gamma2 =  acos((pz * LEG_C + px * sqrt(delta_xz)) / pxz2);
61
                gamma1 = gamma2 * todeg;
62
        } else {
63
                gamma2 = -acos((pz * LEG_C + px * sqrt(delta_xz)) / pxz2);
64
                gamma1 = gamma2 * todeg;
65
        }
66
 
67
        m = pxz2 - LEG_CD_2IPO * (pz * sin(gamma2+LEG_CD_ANG) + px * cos(gamma2+LEG_CD_ANG) - LEG_CD_2IPO / 4.0);
68
 
69
        s = m + py2;
70
        k = c2 + s;
71
        k2 = k * k;
72
 
73
        delta_xy = py2 * k2 - s * (k2 - 4.0 * m * c1);
74
 
75
        if (delta_xy >= 0.0) {
76
                dsqrt = sqrt(delta_xy);
77
                y1 = (py * k + dsqrt) / (2.0 * s);
78
                beta1 = asin(y1/LEG_B) * todeg;
79
                alfa1 = asin((y1 - py)/LEG_A) * todeg + beta1;
80
                y1 = (py * k - dsqrt) / (2.0 * s);
81
                beta2 = asin(y1/LEG_B) * todeg;
82
                alfa2 = asin((y1 - py)/LEG_A) * todeg + beta2;
83
 
84
                if ((alfa1 >= 0.0 && alfa1 <= 180.0) && (beta1 >= -90.0 && beta1 <= 90.0)) {
85
                        *alfa = (int)(alfa1 * 3600.0);
86
                        *beta = (int)(beta1 * 3600.0);
87
                        *gamma = (int)(gamma1 * 3600.0);
88
                        return 0;
89
                } else if ((alfa2 >= 0.0 && alfa2 <= 180.0) && (beta2 >= -90.0 && beta2 <= 90.0)) {
90
                        *alfa = (int)(alfa2 * 3600.0);
91
                        *beta = (int)(beta2 * 3600.0);
92
                        *gamma = (int)(gamma1 * 3600.0);
93
                        return 0;
94
                } else {
95
                        return -1;
96
                }
97
        } else
98
                return -1;
99
 
100
        return -1;
101
 
102
}
103
 
104
int ang_to_leg(int alfa, int beta, int gamma, float *px, float *py, float *pz) {
105
 
106
  float alfa1 = (float)(alfa)/3600.0 * torad;
107
  float beta1 = (float)(beta)/3600.0 * torad;
108
  float sin_gamma = sin((float)(gamma)/3600.0 * torad);
109
  float cos_gamma = cos((float)(gamma)/3600.0 * torad);
110
  float m;
111
 
112
  m =  LEG_B * cos(beta1) + LEG_A * cos(alfa1 - beta1);
113
  *py = LEG_B * sin(beta1) - LEG_A * sin(alfa1 - beta1);
114
 
115
  *pz = (LEG_D + m) * sin_gamma + LEG_C * cos_gamma;
116
  *px = (LEG_D + m) * cos_gamma - LEG_C * sin_gamma;
117
 
118
  return 0;
119
 
120
}
121
 
122
void update_event_action(void) {
123
 
124
  struct timespec t;
125
  struct action_event *e;
126
  int i;
127
 
128
  kern_gettime(&t);
129
 
130
  while ((e = get_first_old_event(&t)) != NULL) {
131
 
132
        if (e->type == EVT_SET_MASK_LEG_ANGLE) {
133
 
134
                for (i=0;i<6;i++)
135
                        if ((e->mask >> i) & 1) {
136
 
137
                        status.ang[i].a = e->ang.a;
138
                        status.ang[i].b = e->ang.b;
139
                        status.ang[i].c = e->ang.c;
140
 
141
                        status.cfg[i].pwm = e->pwm;
142
 
143
#ifdef  DEBUG_SEND
144
                        printf_xy(3,2,WHITE,"%8d: Update leg %2d angle",(int)kern_gettime(NULL),i);
145
#endif
146
 
147
 
148
                        }
149
 
150
                e->status = EVT_STATUS_DONE;
151
 
152
        }
153
 
154
  }
155
 
156
}
157
 
158
TASK servo_send()
159
{
160
        HEXAPOD_STATE   old_status;
161
        register char   new_pos, new_pwm, new_power;
162
        int             res,n;
163
 
164
        for (n=0; n<6;n++) {
165
                old_status.ang[n].a = 0;
166
                old_status.ang[n].b = 0;
167
                old_status.ang[n].c = 0;
168
                old_status.cfg[n].pwm = 0;
169
        }
170
        old_status.power = 0;
171
 
172
        while (1) {
173
                new_pos = 0;
174
                new_pwm = 0;
175
                new_power = 0;
176
 
177
                update_event_action();
178
 
179
                if (status.power != old_status.power) {
180
#ifdef  SERIAL_ON
181
                        task_nopreempt();
182
                        if (old_status.power) {
183
                                servo_set_RC5_switch(COM2, 1);
184
                        } else {
185
                                servo_set_RC5_switch(COM2, 0);
186
                        }
187
                        task_preempt();
188
                        old_status.power = status.power;
1637 giacomo 189
 
190
                        task_endcycle();
191
 
1624 giacomo 192
#endif
193
                }
194
 
195
                for (n=0; n<6; n++){
196
 
197
                        if ((status.ang[n].a != old_status.ang[n].a) ||
198
                                (status.ang[n].b != old_status.ang[n].b) ||
199
                                (status.ang[n].c != old_status.ang[n].c)) {
200
 
201
                                        old_status.ang[n].a = status.ang[n].a;
202
                                        old_status.ang[n].b = status.ang[n].b;
203
                                        old_status.ang[n].c = status.ang[n].c;
204
                                        new_pos += 1 << n;
205
                        }
206
 
207
                        if (status.cfg[n].pwm != old_status.cfg[n].pwm) {
208
                                old_status.cfg[n].pwm = status.cfg[n].pwm;
209
                                new_pwm += 1 << n;
210
                        }
211
 
212
                        if (new_pos && (1<<n)) {
213
#ifdef  SERIAL_ON
214
                                task_nopreempt();
215
                                res = servo_set_angle_sec(com(n*3  ), pin(n*3  ), adjust(status.ang[n].a,n,0));
216
                                if (res != 0) cprintf("Error send data\n");
1637 giacomo 217
                                task_preempt();
218
 
219
                                task_endcycle();
220
 
221
                                task_nopreempt();
1624 giacomo 222
                                res = servo_set_angle_sec(com(n*3+1), pin(n*3+1), adjust(status.ang[n].b,n,1));
223
                                if (res != 0) cprintf("Error send data\n");
1637 giacomo 224
                                task_preempt();
225
 
226
                                task_endcycle();
227
 
228
                                task_nopreempt();
1624 giacomo 229
                                res = servo_set_angle_sec(com(n*3+2), pin(n*3+2), adjust(status.ang[n].c,n,2));
230
                                if (res != 0) cprintf("Error send data\n");
231
                                task_preempt();
1637 giacomo 232
 
233
                                task_endcycle();
234
 
1624 giacomo 235
#endif
236
 
237
                        }
238
 
239
                        if (new_pwm && (1<<n)) {
240
#ifdef  SERIAL_ON
241
                                task_nopreempt();
242
                                (old_status.cfg[n].pwm & 1) ? servo_turn_on(com(n*3  ), pin(n*3  )) : servo_turn_off(com(n*3  ), pin(n*3  ));
1637 giacomo 243
                                task_preempt();
244
 
245
                                task_endcycle();
246
 
247
                                task_nopreempt();
1624 giacomo 248
                                (old_status.cfg[n].pwm & 2) ? servo_turn_on(com(n*3+1), pin(n*3+1)) : servo_turn_off(com(n*3+1), pin(n*3+1));
1637 giacomo 249
                                task_preempt();
250
 
251
                                task_endcycle();
252
 
253
                                task_nopreempt();
1624 giacomo 254
                                (old_status.cfg[n].pwm & 4) ? servo_turn_on(com(n*3+2), pin(n*3+2)) : servo_turn_off(com(n*3+2), pin(n*3+2));
255
                                task_preempt();
1637 giacomo 256
 
257
                                task_endcycle();
258
 
1624 giacomo 259
#endif
260
                        }
261
                }
262
 
1637 giacomo 263
                task_endcycle();
1624 giacomo 264
                task_testcancel();
265
        }
266
 
267
        return 0;
268
}
269
 
270
int init_serial()
271
{
272
        int err;
273
        err = servo_open(COM1, COM_SPEED);
274
        if (!err)
275
                err = servo_open(COM2, COM_SPEED);
276
 
277
        return err;
278
}
279
 
280
void end_serial()
281
{
282
        servo_close(COM1);
283
        servo_close(COM2);
284
}
285
 
286
PID servo_pid;
287
 
288
void init_send_task()
289
{
290
        HARD_TASK_MODEL ms;
291
 
292
        hard_task_default_model(ms);
293
        hard_task_def_ctrl_jet(ms);
294
        hard_task_def_wcet(ms, SEND_TASK_WCET);
295
        hard_task_def_mit(ms, SEND_TASK_MIT);
296
        hard_task_def_usemath(ms);
297
        servo_pid = task_create("Servo_Task", servo_send, &ms, NULL);
298
        if (servo_pid == NIL) {
299
                perror("Could not create task <Send_Task>");
300
                sys_end();
301
        } else
302
                task_activate(servo_pid);
303
 
304
}
305
 
306
void init_send()
307
{
308
        int i;
309
 
310
        if (init_serial()) {
311
                perror("Could not initialize serial port.");
312
                sys_end();
313
        }
314
 
315
        for (i=0; i<6;i++) {
316
                status.ang[i].a =   0;
317
                status.ang[i].b =   0;
318
                status.ang[i].c =   0;
319
                status.cfg[i].pwm = 0;
320
        }
321
        status.power = 0;
322
 
323
        init_send_task();
324
 
325
}
326
 
327
void end_send()
328
{
329
        task_kill(servo_pid);
330
 
331
        end_serial();
332
}