Newer
Older
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
#include "remote.h"
#include "leds.h"
#include "canonLances.h"
#include "canonFilet.h"
#include "brak.h"
#include "braslateral.h"
Remote* Remote::singleton = 0;
Remote* Remote::getSingleton()
{
if (singleton==0)
singleton = new Remote();
return singleton;
}
Remote::Remote()
{
#ifdef ROBOTHW
initClocksAndPortsGPIO();
initUART(USART_BAUDRATE);
#endif
remoteMode = false;
isOpenContainer = false;
isOpenLeftArm = false;
isOpenRightArm = false;
timerLances = -1;
brakInv = false;
brakOut = false;
linSpeed = 0.;
angSpeed = 0.;
}
void Remote::initClocksAndPortsGPIO()
{
#ifdef ROBOTHW
#ifdef STM32F40_41xxx // Pin pour le stm32 h405
RCC_APB1PeriphClockCmd(RCC_APB1Periph_UART5, ENABLE);
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_NOPULL;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_NOPULL;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOD, &GPIO_InitStructure);
/* Connect USART pins to AF */
GPIO_PinAFConfig(GPIOC, GPIO_PinSource12, GPIO_AF_UART5);
GPIO_PinAFConfig(GPIOD, GPIO_PinSource2, GPIO_AF_UART5);
//USART6, fonctionne
// RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART6, ENABLE);
// RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);
//
// GPIO_InitTypeDef GPIO_InitStructure;
//
// GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
// GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
// GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
// GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_NOPULL;
// GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
// GPIO_Init(GPIOC, &GPIO_InitStructure);
//
// /* Connect USART pins to AF */
// GPIO_PinAFConfig(GPIOC, GPIO_PinSource6, GPIO_AF_USART6);
// GPIO_PinAFConfig(GPIOC, GPIO_PinSource7, GPIO_AF_USART6);
//USART 3, déjà utilisé par les AX-12
// RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
// RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
//
// GPIO_InitTypeDef GPIO_InitStructure;
//
// GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10 | GPIO_Pin_11;
// GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
// GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
// GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_NOPULL;
// GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
// GPIO_Init(GPIOB, &GPIO_InitStructure);
//
// /* Connect USART pins to AF */
// GPIO_PinAFConfig(GPIOB, GPIO_PinSource10, GPIO_AF_USART3);
// GPIO_PinAFConfig(GPIOB, GPIO_PinSource11, GPIO_AF_USART3);
//USART 2, me marche pas en réception, probablement à cause de la fonction USB (OTG) sur cette patte
// RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
// RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
//
// GPIO_InitTypeDef GPIO_InitStructure;
//
// GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
// GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
// GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
// GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_NOPULL;
// GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
// GPIO_Init(GPIOA, &GPIO_InitStructure);
//
// /* Connect USART pins to AF */
// GPIO_PinAFConfig(GPIOA, GPIO_PinSource2, GPIO_AF_USART2);
// GPIO_PinAFConfig(GPIOA, GPIO_PinSource3, GPIO_AF_USART2);
#endif
#ifdef STM32F10X_CL // Pin pour le stm32 h107
//RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
GPIO_PinRemapConfig(GPIO_Remap_USART1, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
// port D pin 8 TX : un servo numérique en Ecriture
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; // La vitesse de rafraichissement du port
GPIO_Init(GPIOB, &GPIO_InitStructure);
// port D pin 9 RX : un servo numérique en Lecture
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; // La vitesse de rafraichissement du port
GPIO_Init(GPIOB, &GPIO_InitStructure);
// port D pin 10 : la direction (TX/RX)
/*GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz; // La vitesse de rafraichissement du port
GPIO_Init(GPIOD, &GPIO_InitStructure);*/
/*GPIO_PinAFConfig(GPIOD, GPIO_PinSource8, GPIO_AF_USART3); // Tx
GPIO_PinAFConfig(GPIOD, GPIO_PinSource9, GPIO_AF_USART3);*/ // Rx
#endif
#endif
}
void Remote::initUART(int baudRate)
{
#ifdef ROBOTHW
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = baudRate;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
USART_Init(REMOTE_USART_INDEX, &USART_InitStructure);
USART_Cmd(REMOTE_USART_INDEX, ENABLE);
#endif
}
void Remote::sendData(int data)
{
#ifdef ROBOTHW
// Wait until the send buffer is cleared finishes
while (USART_GetFlagStatus(REMOTE_USART_INDEX, USART_FLAG_TXE) == RESET);
USART_SendData(REMOTE_USART_INDEX, (u16) data);
#endif
}
//void Remote::sendData(KrabiPacket* packet)
//{
// int size = packet->getLength();
// uint8_t* data = packet->getPacket();
// for(int i = 0; i<size; i++)
// sendData(data[i]);
// delete [] data;
//}
void Remote::log(char* msg)
{
int pos = 0;
while(msg[pos] != '\0' )
{
Remote::getSingleton()->sendData(msg[pos]);
pos++;
}
for(int i=0; i<10; i++)
Remote::getSingleton()->sendData(' ');
}
bool Remote::dataAvailable()
{
#ifdef ROBOTHW
return REMOTE_USART_INDEX->SR & USART_FLAG_RXNE;
#else
return false;
#endif
}
int Remote::receiveData()
{
#ifdef ROBOTHW
while (!(REMOTE_USART_INDEX->SR & USART_FLAG_RXNE));
return ((int)(REMOTE_USART_INDEX->DR & 0x1FF));
#else
return 0;
#endif
}
void Remote::update(bool allowChangeMode)
{
#ifdef KRABI
if (timerLances>=0)
{
timerLances--;
if (timerLances==150)
CanonLances::getSingleton()->fire();
}
#endif
//if (allowChangeMode)
{
if (dataAvailable() && !remoteMode)
{
remoteMode = true;
Remote::log("Reçu, avant toute commandant !");
}
if (remoteMode)
Led::setOn(1);
else
Led::setOff(1);
}
if (!allowChangeMode && remoteMode && dataAvailable())
{
int order = receiveData();
Remote::log("Got:");
Remote::getSingleton()->sendData(order);
#ifdef KRABI_JR
switch(order)
{
case 1:
if (isOpenContainer)
Container::getSingleton()->close();
else
Container::getSingleton()->open();
isOpenContainer = !isOpenContainer;
break;
case 2:
if (isOpenLeftArm)
BrasLateral::getLeft()->collapse();
else
BrasLateral::getLeft()->expand();
isOpenLeftArm = !isOpenLeftArm;
break;
case 3:
if (isOpenRightArm)
BrasLateral::getRight()->collapse();
else
BrasLateral::getRight()->expand();
isOpenRightArm = !isOpenRightArm;
break;
}
#endif
#ifdef KRABI
switch(order)
{
case 1:
CanonFilet::getSingleton()->shoot();
break;
case 2:
if (timerLances<0)
{
CanonLances::getSingleton()->arm();
timerLances = 300;
}
break;
case 3:
if (isOpenLeftArm)
BrasLateral::getLeft()->collapse();
else
BrasLateral::getLeft()->expand();
isOpenLeftArm = !isOpenLeftArm;
break;
case 4:
if (isOpenRightArm)
BrasLateral::getRight()->collapse();
else
BrasLateral::getRight()->expand();
isOpenRightArm = !isOpenRightArm;
break;
case 5:
if (!brakInv)
Brak::getSingleton()->positionHaute();
else
{
Brak::getSingleton()->positionIntermediaire();
brakOut = false;
}
break;
case 6:
if (!brakInv)
Brak::getSingleton()->positionBasse();
else
{
Brak::getSingleton()->positionBasseRetourne();
brakOut = true;
}
break;
case 10:
CanonLances::getSingleton()->shootAtWill();
break;
case 11:
CanonLances::getSingleton()->stopShootAtWill();
break;
case 12:
Brak::getSingleton()->attraperFeu();
break;
case 13:
Brak::getSingleton()->relacherFeu();
break;
case 14:
if (brakOut)
{
Brak::getSingleton()->positionIntermediaire();
Brak::getSingleton()->orienterHaut();
brakInv = true;
}
break;
case 15:
if (brakOut)
{
Brak::getSingleton()->positionIntermediaire();
Brak::getSingleton()->orienterBas();
brakInv = true;
}
break;
}
#endif
// Linear Speed
if (order>=0 and order<=50)
linSpeed = ((float)(order-25)) / 25. * LINEAR_REMOTE_SPEED_LIMIT;
// Angular Speed
if (order>=51 and order<=101)
angSpeed = -((float)(order-75)) / 25. * ANGULAR_REMOTE_SPEED_LIMIT;
}
}
bool Remote::isRemoteMode()
{
return remoteMode;
}
float Remote::getLeftPWM()
{
return linSpeed;
#if defined(STM32F40_41xxx) || defined(STM32F10X_MD)
return linSpeed + angSpeed;
#else
return linSpeed - angSpeed;
#endif
}
float Remote::getRightPWM()
{
return angSpeed;
#if defined(STM32F40_41xxx) || defined(STM32F10X_MD)
return linSpeed - angSpeed;
#else
return linSpeed + angSpeed;
#endif
}