-
Notifications
You must be signed in to change notification settings - Fork 1
/
motor.c
217 lines (193 loc) · 4.88 KB
/
motor.c
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
#include <stdio.h>
#include <stdlib.h>
#include <sys/msg.h>
#include <unistd.h>
#include <pigpio.h>
#define HBRIDGE_R_F 17
#define HBRIDGE_R_B 27
#define HBRIDGE_L_F 23
#define HBRIDGE_L_B 24
// NOTE: DONT EVER TURN BOTH FORWARD AND BACK AT THE SAME TIME!
#include "motor.h"
void *msg_handler(void *arg) {
int msqid = *((int *) arg);
MSG m, omsg;
char remote = 0;
char state = STOPPED;
printf("Message handler started\n");
fflush(stdout);
if (gpioInitialise() < 0) return 0;
gpioSetMode(HBRIDGE_L_F, PI_OUTPUT);
gpioSetMode(HBRIDGE_L_B, PI_OUTPUT);
gpioSetMode(HBRIDGE_R_F, PI_OUTPUT);
gpioSetMode(HBRIDGE_R_B, PI_OUTPUT);
gpioWrite(HBRIDGE_L_F, 0);
gpioWrite(HBRIDGE_L_B, 0);
gpioWrite(HBRIDGE_R_F, 0);
gpioWrite(HBRIDGE_R_B, 0);
for (;;) {
if (msgrcv(msqid, &m, sizeof(MSG), TO_HNDLR, 0) == -1) {
perror("Handler");
return NULL;
}
printf("Received message %d\n", (int) m.msg);
fflush(stdout);
// Determine who sent it.
if (m.msg >= 20) {
// Sent from sender
printf("Message from auto-pilot\n");
m.msg -= 20;
switch(m.msg) {
case STATE:
printf("STATE received.\n");
omsg.mtype = TO_SNDR;
omsg.msg = state;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
continue;
case CONNECT:
printf("AI CONNECT received.\n");
omsg.mtype = TO_SNDR;
omsg.msg = SUCCESS;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
continue;
case DISCONNECT:
printf("AI DISCONNECT received.\n");
omsg.mtype = TO_SNDR;
omsg.msg = DISCONNECT;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
continue;
}
// Ignore message from sender (other than STATE) if remote is on
if (remote) {
printf("REMOTE connnected %d\n", remote);
omsg.mtype = TO_SNDR;
omsg.msg = CONNECT;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
continue;
}
}
else if (m.msg >= 10) {
// Sent from remote
printf("Message from remote control\n");
m.msg -= 10;
}
else {
printf("Invalid message\n");
continue;
}
switch(m.msg) {
case STOPPED:
state = STOPPED;
printf("STOPPED received.\n");
gpioHardwarePWM(18, 500, 990000);
gpioWrite(HBRIDGE_L_F, 0);
gpioWrite(HBRIDGE_L_B, 0);
gpioWrite(HBRIDGE_R_F, 0);
gpioWrite(HBRIDGE_R_B, 0);
// Sleep 1 seconds to make sure motor current dissapated.
sleep(1);
if (!remote) {
omsg.mtype = TO_SNDR;
omsg.msg = SUCCESS;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
}
break;
case FORWARD:
state = FORWARD;
printf("FORWARD received.\n");
gpioHardwarePWM(18, 500, 250000);
gpioWrite(HBRIDGE_L_F, 1);
gpioWrite(HBRIDGE_L_B, 0);
gpioWrite(HBRIDGE_R_F, 1);
gpioWrite(HBRIDGE_R_B, 0);
if (!remote) {
omsg.mtype = TO_SNDR;
omsg.msg = SUCCESS;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
}
break;
case BACK:
state = BACK;
printf("BACK received.\n");
gpioHardwarePWM(18, 500, 990000);
gpioWrite(HBRIDGE_L_F, 0);
gpioWrite(HBRIDGE_L_B, 1);
gpioWrite(HBRIDGE_R_F, 0);
gpioWrite(HBRIDGE_R_B, 1);
if (!remote) {
omsg.mtype = TO_SNDR;
omsg.msg = SUCCESS;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
}
break;
case RIGHT:
state = RIGHT;
printf("RIGHT received.\n");
gpioHardwarePWM(18, 500, 250000);
gpioWrite(HBRIDGE_L_F, 0);
gpioWrite(HBRIDGE_L_B, 0);
gpioWrite(HBRIDGE_R_F, 1);
gpioWrite(HBRIDGE_R_B, 0);
if (!remote) {
omsg.mtype = TO_SNDR;
omsg.msg = SUCCESS;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
}
break;
case LEFT:
state = LEFT;
printf("LEFT received.\n");
gpioHardwarePWM(18, 500, 250000);
gpioWrite(HBRIDGE_L_F, 1);
gpioWrite(HBRIDGE_L_B, 0);
gpioWrite(HBRIDGE_R_F, 0);
gpioWrite(HBRIDGE_R_B, 0);
if (!remote) {
omsg.mtype = TO_SNDR;
omsg.msg = SUCCESS;
if (msgsnd(msqid, &omsg, sizeof(MSG)-sizeof(long), 0) == -1) {
perror("Error in message queue");
return NULL;
}
}
break;
case STATE:
printf("STATE received.\n");
break;
case CONNECT:
printf("CONNECT received.\n");
remote = 1;
break;
case DISCONNECT:
printf("DISCONNECT received.\n");
remote = 0;
break;
}
}
gpioTerminate();
return NULL;
}