-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.cpp
More file actions
1096 lines (835 loc) · 30.6 KB
/
server.cpp
File metadata and controls
1096 lines (835 loc) · 30.6 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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//**************** GENERAL HEADERS *****************
#include <cstdlib>
#include <winsock2.h>
#include <iostream>
using namespace std;
//************** PCL-711b HEADERS *****************
#include <windows.h>
#include <windef.h>
#include <stdio.h>
#include <conio.h>
#include <cmath>
#include <driver.h>
//**************************************************
long lDriverHandle;
//***************** DEFINITIONS ********************
//**************************************************
//*************** DEVICE FUNCTION DECLARATIONS *****
void ErrorHandler(DWORD dwErrCde);
void ErrorStop(long*, DWORD);
//************ Variables Section *****************//
int noSamples = 100;
bool connected;
//******************** BUFFERS ***********************
//******************** Receive Buffer ****************
struct rcvBlock {
float control;
float roll_c;
float yaw_c;
float pitch_c;
float elbow_c;
float shoulder_c;
float waist_c;
float e0;
float e1;
float e2;
float e3;
float e4;
float e5;
unsigned m1brk: 1;
unsigned m2brk: 1;
unsigned m3brk: 1;
unsigned m4brk: 1;
unsigned m5brk: 1;
unsigned m6brk: 1;
unsigned null1: 1;
unsigned null2: 1;
} bufRCV;
char *rcvBuf = (char *) &bufRCV;
//******************* Send Buffer ********************
struct sndBlock {
float roll_p;
float yaw_p;
float pitch_p;
float elbow_p;
float shoulder_p;
float waist_p;
} bufSND;
char *sndBuf = (char *) &bufSND;
int rBytes, rv;
//temp >> used for truncation
int temp;
void main(void)
{
//*************** PCL VARIABLE DECLARATIONS ********
DWORD dwErrCde;
ULONG lDevNum=000 ;
USHORT usChan=0,outChan=0;
USHORT usGain=0;
float voltBuf,fVoltage[6],fOutValue[6];
PT_AIVoltageIn ptAIVoltageIn;
PT_AIConfig ptAIConfig;
PT_AOVoltageOut tAOVoltageOut;
ptAIVoltageIn.voltage=&voltBuf;
//**************************************************
//*************** NETWORK VARIABLES AND SOCKECT INIT SECTION*****************
WSADATA wsaData;
SOCKET ListeningSocket;
SOCKET NewConnection;
SOCKADDR_IN ServerAddr;
SOCKADDR_IN ClientAddr;
int Port = 10000;
// Initialize Winsock version 2.2
WSAStartup(MAKEWORD(2,2), &wsaData);
// Create a new socket to listen for client connections.
ListeningSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
// Set up a SOCKADDR_IN structure that will tell bind that we
// want to listen for connections on all interfaces using port
// 5150. Notice how we convert the Port variable from host byte
// order to network byte order.
ServerAddr.sin_family = AF_INET;
ServerAddr.sin_port = htons(Port);
ServerAddr.sin_addr.s_addr = htonl(INADDR_ANY);
// Associate the address information with the socket using bind.
bind(ListeningSocket, (SOCKADDR *)&ServerAddr,
sizeof(ServerAddr));
// Listen for client connections. We used a backlog of 5, which
// is normal for many applications.
int ClientAddrLen=sizeof(ClientAddr);
listen(ListeningSocket, 1);
// Accept a new connection when one arrives.
NewConnection = accept(ListeningSocket, (SOCKADDR *)
&ClientAddr,&ClientAddrLen);
connected = true;
cout << " CONNECTED "<< endl;
//*************** Step 1: Open device *************
dwErrCde = DRV_DeviceOpen(lDevNum, &lDriverHandle);
cout << " DEVICE OPEN \t" << lDriverHandle << endl;
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch();
exit(1) ;
}
//*************************************************
// *********** Activate Brakes ************
DWORD lPortStart = 0; // for digital output
DWORD lPortCount = 2; // for digital output
BYTE * pBufData = new BYTE[ lPortCount ];
pBufData[ 0 ] = 0x00;
pBufData[ 1 ] = 0x80;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
cout << " AdxDioWriteDoPorts \t" << lDriverHandle << endl;
cout << " Brakes On " << endl;
//*************************************************
//Step 2: Config device
//Analog IN
ptAIConfig.DasChan = usChan;
ptAIConfig.DasGain = usGain;
//Analog OUT
tAOVoltageOut.chan = outChan;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//*************************************************
// Step 3: prepare data aquisition
ptAIVoltageIn.chan = usChan; // input channel
ptAIVoltageIn.gain = usGain; // gain code: refer to manual for voltage range
ptAIVoltageIn.TrigMode = 0; // 0: internal trigger, 1: external trigger
//ptAIVoltageIn.voltage = &fVoltage; // Voltage retrieved
//int noSamples = 50; // number of samples
//****************************************************************
// At this point you can do two things with these sockets. Wait
// for more connections by calling accept again on ListeningSocket
// and start sending or receiving data on NewConnection. We will
// describe how to send and receive data later in the chapter.
//***************************************************************
//recv(NewConnection, rcvBuf , sizeof(bufRCV), 0);
float tempVolt=0;
while (connected)
{
//cout << " while (connected) " << endl;
// Start basic data transfer to check for control command
// while (bufRCV.control == 0)
//{
//check start variable
//Connected, waiting for the client to start the control command.
recv(NewConnection, rcvBuf , sizeof(bufRCV), 0);
//bufRCV.control = ntohl(bufRCV.control);
//cout << bufRCV.control<<endl;
// Release H/W lock
//
// Set the analog output position to float
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//*************** Last edit
fVoltage[0]=0;
fVoltage[1]=0;
fVoltage[2]=0;
fVoltage[3]=0;
fVoltage[4]=0;
fVoltage[5]=0;
while (bufRCV.control == 1)
{
//cout << bufRCV.control<<endl;
//Sleep(1000);
/// We need to transmit data first
//----------------------------------------------
//step 4 : Perform Data acquisition here,
/* for (USHORT j = 0; j < 6; j++)
{
ptAIVoltageIn.chan = j;
tempVolt=0.0;
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[j]=tempVolt/(float) noSamples;
}
*/
//cout << bufRCV.m6brk;
//Sleep(2000);
//**************************************************
// Convert voltages to doubles to ensure integrity
bufSND.roll_p = fVoltage[0];
bufSND.yaw_p = fVoltage[1];
bufSND.pitch_p = fVoltage[2];
bufSND.elbow_p = fVoltage[3];
bufSND.shoulder_p = fVoltage[4];
bufSND.waist_p = fVoltage[5];
//**************************************************
send(NewConnection, sndBuf, sizeof(bufSND), 0);
//cout << "data sent "<<endl;
//**************************************************
//Sleep(2000);
//*************** Extract data from the buffer *****
recv(NewConnection, rcvBuf , sizeof(bufRCV), 0);
//*************************************************
// ***************** ANALOG DE-MULTIPLEXING *****************
// This section de multiplexes the analog speeds for the motors
//
// Get the voltages from the buffer,
fOutValue[0] = bufRCV.roll_c;
fOutValue[1] = bufRCV.yaw_c;
fOutValue[2] = bufRCV.pitch_c;
fOutValue[3] = bufRCV.elbow_c;
fOutValue[4] = bufRCV.shoulder_c;
fOutValue[5] = bufRCV.waist_c;
for (int i = 0; i<6; i++)
{
fOutValue[i]=fabs(fOutValue[i]);
if ( fOutValue[i] > 4)
fOutValue[i]=4;
}
//
// Set the output of the plant with the output of the controller
// Set the directional bytes
// At first the braking is aktivated on byte 1,, I know there is a typo here
// We can shorten the time by neglecting the idle motors
// from the multiplex procedure, the D/O buffer should be done !!
// otherwise the analog out will swing to the wrong port.
// ******************* MOTOR 1 ***********************
//********** MOTOR 1 *************
if ( !bufRCV.m1brk )
{
//************* last edit comrade
ptAIVoltageIn.chan = 0;
tempVolt=0.0;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[0]=tempVolt/(float) noSamples;
bufSND.roll_p = fVoltage[0];
pBufData[ 0 ] = pBufData[ 0 ] & 0xFC;
if (bufRCV.e0 < 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x02;
}
else if (bufRCV.e0 > 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x01;
}
// Analog Out
tAOVoltageOut.OutputValue = fabs(fOutValue[0]);
if (tAOVoltageOut.OutputValue > 4) tAOVoltageOut.OutputValue = 4;
dwErrCde = DRV_AOVoltageOut(lDriverHandle, &tAOVoltageOut);
Sleep(1);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
printf("Press any key to exit....");
getch();
return;
}
//
// SEND Direction + Speed
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
pBufData[ 1 ] = pBufData[ 1 ] | 0x10;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//
//Set the output on the float pin
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
}
else {pBufData[ 0 ] = pBufData[ 0 ] & 0xFC;}
// ******************************************
// ******************* MOTOR 2 ***********************
if ( !bufRCV.m2brk )
{
{
ptAIVoltageIn.chan = 1;
tempVolt=0.0;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[1]=tempVolt/(float) noSamples;
bufSND.yaw_p = fVoltage[1];
pBufData[ 0 ] = pBufData[ 0 ] & 0xF3;
if (bufRCV.e1 < 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x08;
}
else if (bufRCV.e1 > 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x04;
}
// Analog Out
tAOVoltageOut.OutputValue = fabs(fOutValue[1]);
if (tAOVoltageOut.OutputValue > 4) tAOVoltageOut.OutputValue = 4;
dwErrCde = DRV_AOVoltageOut(lDriverHandle, &tAOVoltageOut);
Sleep(1);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
printf("Press any key to exit....");
getch();
return;
}
//
// SEND Direction + Speed
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
pBufData[ 1 ] = pBufData[ 1 ] | 0x20;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//
//Set the output on the float pin
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
}
}
else {pBufData[ 0 ] = pBufData[ 0 ] & 0xF3;}
//*************************************************
// ******************* MOTOR 3 ***********************
if ( !bufRCV.m3brk )
{
ptAIVoltageIn.chan = 2;
tempVolt=0.0;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[2]=tempVolt/(float) noSamples;
bufSND.pitch_p = fVoltage[2];
pBufData[ 0 ] = pBufData[ 0 ] & 0xCF;
if (bufRCV.e2 < 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x20;
}
else if (bufRCV.e2 > 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x10;
}
// Analog Out
tAOVoltageOut.OutputValue = fabs(fOutValue[2]);
if (tAOVoltageOut.OutputValue > 4) tAOVoltageOut.OutputValue = 4;
dwErrCde = DRV_AOVoltageOut(lDriverHandle, &tAOVoltageOut);
Sleep(1);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
printf("Press any key to exit....");
getch();
return;
}
//
// SEND Direction + Speed
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
pBufData[ 1 ] = pBufData[ 1 ] | 0x30;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//
//Set the output on the frloat pin
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
}
else{pBufData[ 0 ] = pBufData[ 0 ] & 0xCF;}
//*************************************************
// ******************* MOTOR 4 ***********************
if ( !bufRCV.m4brk )
{
ptAIVoltageIn.chan = 3;
tempVolt=0.0;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[3]=tempVolt/(float) noSamples;
bufSND.elbow_p = fVoltage[3];
pBufData[ 0 ] = pBufData[ 0 ] & 0x3F;
if (bufRCV.e3 < 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x80;
}
else if (bufRCV.e3 > 0)
{
pBufData[ 0 ] = pBufData[ 0 ] | 0x40;
}
// Analog Out
tAOVoltageOut.OutputValue = fabs(fOutValue[3]);
if (tAOVoltageOut.OutputValue > 4) tAOVoltageOut.OutputValue = 4;
dwErrCde = DRV_AOVoltageOut(lDriverHandle, &tAOVoltageOut);
Sleep(1);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
printf("Press any key to exit....");
getch();
return;
}
//
// SEND Direction + Speed
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
pBufData[ 1 ] = pBufData[ 1 ] | 0x40;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//
//Set the output on the frloat pin
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
}
else {pBufData[ 0 ] = pBufData[ 0 ] & 0x3F;}
//*************************************************
// ******************* MOTOR 5 ***********************
if ( !bufRCV.m5brk )
{
ptAIVoltageIn.chan = 4;
tempVolt=0.0;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[4]=tempVolt/(float) noSamples;
bufSND.shoulder_p = fVoltage[4];
pBufData[ 1 ] = pBufData[ 1 ] & 0xFC;
if (bufRCV.e4 < 0)
{
pBufData[ 1 ] = pBufData[ 1 ] | 0x02;
}
else if (bufRCV.e4 > 0)
{
pBufData[ 1 ] = pBufData[ 1 ] | 0x01;
}
// Analog Out
tAOVoltageOut.OutputValue = fabs(fOutValue[4]);
if (tAOVoltageOut.OutputValue > 4) tAOVoltageOut.OutputValue = 4;
dwErrCde = DRV_AOVoltageOut(lDriverHandle, &tAOVoltageOut);
Sleep(1);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
printf("Press any key to exit....");
getch();
return;
}
//
// SEND Direction + Speed
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
pBufData[ 1 ] = pBufData[ 1 ] | 0x50;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//
//Set the output on the frloat pin
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
}
else {pBufData[ 1 ] = pBufData[ 1 ] & 0xFC;}
//*************************************************
// ******************* MOTOR 6 ***********************
if ( !bufRCV.m6brk )
{
ptAIVoltageIn.chan = 5;
tempVolt=0.0;
dwErrCde = DRV_AIConfig(lDriverHandle, &ptAIConfig);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
for (int i = 0; i < noSamples; i++)
{
dwErrCde = DRV_AIVoltageIn(lDriverHandle, &ptAIVoltageIn);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
return;
}
//ptAIVoltageIn.voltage=&voltBuf;
tempVolt+=voltBuf;
//cout << voltBuf<<endl;
// cout << ptAIVoltageIn.chan << endl;
}
//Take the average and truncate
fVoltage[5]=tempVolt/(float) noSamples;
bufSND.waist_p = fVoltage[5];
pBufData[ 1 ] = pBufData[ 1 ] & 0xF3;
if (bufRCV.e5 < 0)
{
pBufData[ 1 ] = pBufData[ 1 ] | 0x08;
}
else if (bufRCV.e5 > 0)
{
pBufData[ 1 ] = pBufData[ 1 ] | 0x04;
}
// Analog Out
tAOVoltageOut.OutputValue = fabs(fOutValue[5]);
if (tAOVoltageOut.OutputValue > 4) tAOVoltageOut.OutputValue = 4;
dwErrCde = DRV_AOVoltageOut(lDriverHandle, &tAOVoltageOut);
Sleep(1);
if (dwErrCde != SUCCESS)
{
ErrorStop(&lDriverHandle, dwErrCde);
printf("Press any key to exit....");
getch();
return;
}
//
// SEND Direction + Speed
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
pBufData[ 1 ] = pBufData[ 1 ] | 0x60;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//
//Set the output on the frloat pin
//
pBufData[ 1 ] = pBufData[ 1 ] & 0x8f;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
}
else {pBufData[ 1 ] = pBufData[ 1 ] & 0xF3;}
//*************************************************
}
// *********** Activate Brakes ************
pBufData[ 0 ] = 0x00;
pBufData[ 1 ] = 0x80;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");
getch() ;
exit(1) ;
}
//break;
if (bufRCV.control==-1)
{
WSACleanup();
connected =false;
break;
}
}
// *********** Activate Brakes ************
pBufData[ 0 ] = 0x00;
pBufData[ 1 ] = 0x80;
dwErrCde = AdxDioWriteDoPorts( lDriverHandle, lPortStart, lPortCount, pBufData );
if (dwErrCde != SUCCESS)
{
ErrorHandler(dwErrCde);
printf("Program terminated!\n");
printf("Press any key to exit....");