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
|
已复制! #include "serial.h"
#include <math.h>
lcm_t *lcm;
bool stopFlag = false;
int curStatus = -1, curSpeed = 0;
double curOmega = 0.0;
pthread_mutex_t curPoseMutex;
clock_t lastTime;
double curPose[3] = {0, 0, 0};
int main() {
if (!whellInit()) {
goto err;
}
lcm = lcm_create(NULL);
if (!lcm) {
fprintf(stderr, "Failed to create LCM\n");
goto err;
}
lastTime = clock();
path_ctrl_t_subscribe(lcm, "wheel_ctrl", parseCmd, NULL);
path_t_subscribe(lcm, "PATH", parsePath, NULL);
pthread_mutex_init(&curPoseMutex, NULL);
pose_t_subscribe(lcm, "CURRENTPOSE", setCurPose, NULL);
pthread_t thread;
if (pthread_create(&thread, NULL, sendCurPose, NULL) != 0) {
fprintf(stderr, "Error: Failed to create thread\n");
goto err;
}
while (true) {
lcm_handle(lcm);
}
err:
return 0;
}
void parseCmd(const lcm_recv_buf_t *rbuf, const char *channel,
const path_ctrl_t *msg, void *userdata) {
byte status = msg->cmd, speed = msg->speed;
if (curStatus == status && curSpeed == speed) {
return;
}
renewCurPose();
switch (status) {
case 1:
wheelSend(0x01, speed, 0x01, speed);
curSpeed = speed;
curOmega = 0;
break;
case 2:
wheelSend(0x02, DEFAULT_SPEED, 0x01, DEFAULT_SPEED);
curOmega = (double)DEFAULT_SPEED * FULLSPEED / 100 / RADIUS;
curSpeed = 0;
break;
case 3:
wheelSend(0x01, DEFAULT_SPEED, 0x02, DEFAULT_SPEED);
curOmega = (double)-DEFAULT_SPEED * FULLSPEED / 100 / RADIUS;
curSpeed = 0;
break;
case 4:
wheelSend(0x00, 0x00, 0x00, 0x00);
curOmega = 0;
curSpeed = 0;
stopFlag = true;
printf("Stop for 2 seconds\n");
break;
case 5:
wheelSend(0x00, 0x00, 0x00, 0x00);
curOmega = 0;
curSpeed = 0;
stopFlag = false;
printf("Stop but can recieve cmd\n");
break;
case 0:
default:
wheelSend(0x00, 0x00, 0x00, 0x00);
curOmega = 0;
curSpeed = 0;
break;
}
curStatus = status;
}
void parsePath(const lcm_recv_buf_t *rbuf, const char *channel,
const path_t *msg, void *userdata) {
if (stopFlag) {
return;
}
int16_t length = msg->length;
double v, w;
int8_t vWheels[2];
int8_t bWheels[2];
if (length <= 0) {
fprintf(stderr, "Error: Invalid path\n");
return;
}
v = msg->xyr[0][0];
w = msg->xyr[0][1];
printf("v: %f m/s, w: %f rad/s\n", v, w);
if (fabs(v) <= 0.01 && fabs(w) <= 0.01) {
wheelSend(0x00, 0x00, 0x00, 0x00);
renewCurPose();
curSpeed = 0;
curOmega = 0;
} else {
if (w <= 0.2) {
w *= 2;
}
vWheels[0] = (int8_t)((double)(v - w * RADIUS) / FULLSPEED * 100);
vWheels[1] = (int8_t)((double)(v + w * RADIUS) / FULLSPEED * 100);
bWheels[0] = vWheels[0] > 0 ? 0x01 : 0x02;
bWheels[1] = vWheels[1] > 0 ? 0x01 : 0x02;
wheelSend(bWheels[0], fabs(vWheels[0]), bWheels[1], fabs(vWheels[1]));
renewCurPose();
curSpeed = (int8_t)((double)v / FULLSPEED * 100);
curOmega = (int8_t)w;
}
printf("curSpeed: %d, curOmega: %f\n", curSpeed, curOmega);
}
void setCurPose(const lcm_recv_buf_t *rbuf, const char *channel,
const pose_t *msg, void *userdata) {
pthread_mutex_lock(&curPoseMutex);
curPose[0] = msg->pos[0];
curPose[1] = msg->pos[1];
curPose[2] = msg->pos[2];
lastTime = clock();
pthread_mutex_unlock(&curPoseMutex);
}
void *sendCurPose(void *args) {
pose_t pose;
while (true) {
renewCurPose();
pthread_mutex_lock(&curPoseMutex);
pose.pos[0] = curPose[0];
pose.pos[1] = curPose[1];
pose.pos[2] = curPose[2];
pthread_mutex_unlock(&curPoseMutex);
pose_t_publish(lcm, "POSE", &pose);
usleep(15 * 1000);
}
}
void renewCurPose() {
clock_t curTime = clock();
double dt = (double)(curTime - lastTime) / CLOCKS_PER_SEC;
double speed = (double)curSpeed * FULLSPEED / 100;
pthread_mutex_lock(&curPoseMutex);
curPose[0] += speed * cos(curPose[2]) * dt;
curPose[1] += speed * sin(curPose[2]) * dt;
curPose[2] += curOmega * dt;
lastTime = clock();
pthread_mutex_unlock(&curPoseMutex);
}
|