wpilib-hal 0.1.1

Low-level bindings to WPILib's HAL. DO NOT USE THIS YET. THIS IS JUST TO SECURE THE NAME.
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
/* automatically generated by rust-bindgen */

pub const SAMPLE_RATE_TOO_HIGH: ::std::os::raw::c_uint = 1001;
pub const SAMPLE_RATE_TOO_HIGH_MESSAGE: &'static [u8; 43usize] =
    b"HAL: Analog module sample rate is too high\x00";
pub const VOLTAGE_OUT_OF_RANGE: ::std::os::raw::c_uint = 1002;
pub const VOLTAGE_OUT_OF_RANGE_MESSAGE: &'static [u8; 60usize] =
    b"HAL: Voltage to convert to raw value is out of range [0; 5]\x00";
pub const LOOP_TIMING_ERROR: ::std::os::raw::c_uint = 1004;
pub const LOOP_TIMING_ERROR_MESSAGE: &'static [u8; 58usize] =
    b"HAL: Digital module loop timing is not the expected value\x00";
pub const SPI_WRITE_NO_MOSI: ::std::os::raw::c_uint = 1012;
pub const SPI_WRITE_NO_MOSI_MESSAGE: &'static [u8; 50usize] =
    b"HAL: Cannot write to SPI port with no MOSI output\x00";
pub const SPI_READ_NO_MISO: ::std::os::raw::c_uint = 1013;
pub const SPI_READ_NO_MISO_MESSAGE: &'static [u8; 50usize] =
    b"HAL: Cannot read from SPI port with no MISO input\x00";
pub const SPI_READ_NO_DATA: ::std::os::raw::c_uint = 1014;
pub const SPI_READ_NO_DATA_MESSAGE: &'static [u8; 40usize] =
    b"HAL: No data available to read from SPI\x00";
pub const INCOMPATIBLE_STATE: ::std::os::raw::c_uint = 1015;
pub const INCOMPATIBLE_STATE_MESSAGE: &'static [u8; 59usize] =
    b"HAL: Incompatible State: The operation cannot be completed\x00";
pub const NO_AVAILABLE_RESOURCES: ::std::os::raw::c_int = -1004;
pub const NO_AVAILABLE_RESOURCES_MESSAGE: &'static [u8; 40usize] =
    b"HAL: No available resources to allocate\x00";
pub const NULL_PARAMETER: ::std::os::raw::c_int = -1005;
pub const NULL_PARAMETER_MESSAGE: &'static [u8; 45usize] =
    b"HAL: A pointer parameter to a method is NULL\x00";
pub const ANALOG_TRIGGER_LIMIT_ORDER_ERROR: ::std::os::raw::c_int = -1010;
pub const ANALOG_TRIGGER_LIMIT_ORDER_ERROR_MESSAGE: &'static [u8; 60usize] =
    b"HAL: AnalogTrigger limits error.  Lower limit > Upper Limit\x00";
pub const ANALOG_TRIGGER_PULSE_OUTPUT_ERROR: ::std::os::raw::c_int = -1011;
pub const ANALOG_TRIGGER_PULSE_OUTPUT_ERROR_MESSAGE: &'static [u8; 51usize] =
    b"HAL: Attempted to read AnalogTrigger pulse output.\x00";
pub const PARAMETER_OUT_OF_RANGE: ::std::os::raw::c_int = -1028;
pub const PARAMETER_OUT_OF_RANGE_MESSAGE: &'static [u8; 34usize] =
    b"HAL: A parameter is out of range.\x00";
pub const RESOURCE_IS_ALLOCATED: ::std::os::raw::c_int = -1029;
pub const RESOURCE_IS_ALLOCATED_MESSAGE: &'static [u8; 32usize] =
    b"HAL: Resource already allocated\x00";
pub const RESOURCE_OUT_OF_RANGE: ::std::os::raw::c_int = -1030;
pub const RESOURCE_OUT_OF_RANGE_MESSAGE: &'static [u8; 45usize] =
    b"HAL: The requested resource is out of range.\x00";
pub const HAL_INVALID_ACCUMULATOR_CHANNEL: ::std::os::raw::c_int = -1035;
pub const HAL_INVALID_ACCUMULATOR_CHANNEL_MESSAGE: &'static [u8; 55usize] =
    b"HAL: The requested input is not an accumulator channel\x00";
pub const HAL_COUNTER_NOT_SUPPORTED: ::std::os::raw::c_int = -1058;
pub const HAL_COUNTER_NOT_SUPPORTED_MESSAGE: &'static [u8; 51usize] =
    b"HAL: Counter mode not supported for encoder method\x00";
pub const HAL_PWM_SCALE_ERROR: ::std::os::raw::c_int = -1072;
pub const HAL_PWM_SCALE_ERROR_MESSAGE: &'static [u8; 44usize] =
    b"HAL: The PWM Scale Factors are out of range\x00";
pub const HAL_HANDLE_ERROR: ::std::os::raw::c_int = -1098;
pub const HAL_HANDLE_ERROR_MESSAGE: &'static [u8; 47usize] =
    b"HAL: A handle parameter was passed incorrectly\x00";
pub const HAL_SERIAL_PORT_NOT_FOUND: ::std::os::raw::c_int = -1123;
pub const HAL_SERIAL_PORT_NOT_FOUND_MESSAGE: &'static [u8; 52usize] =
    b"HAL: The specified serial port device was not found\x00";
pub const HAL_SERIAL_PORT_OPEN_ERROR: ::std::os::raw::c_int = -1124;
pub const HAL_SERIAL_PORT_OPEN_ERROR_MESSAGE: &'static [u8; 41usize] =
    b"HAL: The serial port could not be opened\x00";
pub const HAL_SERIAL_PORT_ERROR: ::std::os::raw::c_int = -1125;
pub const HAL_SERIAL_PORT_ERROR_MESSAGE: &'static [u8; 43usize] =
    b"HAL: There was an error on the serial port\x00";
pub const HAL_THREAD_PRIORITY_ERROR: ::std::os::raw::c_int = -1152;
pub const HAL_THREAD_PRIORITY_RANGE_ERROR: ::std::os::raw::c_int = -1153;
pub type HAL_Handle = i32;
pub type HAL_PortHandle = HAL_Handle;
pub type HAL_AnalogInputHandle = HAL_Handle;
pub type HAL_AnalogOutputHandle = HAL_Handle;
pub type HAL_AnalogTriggerHandle = HAL_Handle;
pub type HAL_CompressorHandle = HAL_Handle;
pub type HAL_CounterHandle = HAL_Handle;
pub type HAL_DigitalHandle = HAL_Handle;
pub type HAL_DigitalPWMHandle = HAL_Handle;
pub type HAL_GyroHandle = HAL_Handle;
pub type HAL_InterruptHandle = HAL_Handle;
pub type HAL_NotifierHandle = HAL_Handle;
pub type HAL_RelayHandle = HAL_Handle;
pub type HAL_SolenoidHandle = HAL_Handle;
pub type HAL_Bool = i32;
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum HAL_AccelerometerRange {
    HAL_AccelerometerRange_k2G = 0,
    HAL_AccelerometerRange_k4G = 1,
    HAL_AccelerometerRange_k8G = 2,
}
extern "C" {
    pub fn HAL_SetAccelerometerActive(active: HAL_Bool);
}
extern "C" {
    pub fn HAL_SetAccelerometerRange(range: HAL_AccelerometerRange);
}
extern "C" {
    pub fn HAL_GetAccelerometerX() -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAccelerometerY() -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAccelerometerZ() -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_IsAccumulatorChannel(analogPortHandle: HAL_AnalogInputHandle,
                                    status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_InitAccumulator(analogPortHandle: HAL_AnalogInputHandle,
                               status: *mut i32);
}
extern "C" {
    pub fn HAL_ResetAccumulator(analogPortHandle: HAL_AnalogInputHandle,
                                status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAccumulatorCenter(analogPortHandle: HAL_AnalogInputHandle,
                                    center: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAccumulatorDeadband(analogPortHandle: HAL_AnalogInputHandle,
                                      deadband: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAccumulatorValue(analogPortHandle: HAL_AnalogInputHandle,
                                   status: *mut i32) -> i64;
}
extern "C" {
    pub fn HAL_GetAccumulatorCount(analogPortHandle: HAL_AnalogInputHandle,
                                   status: *mut i32) -> i64;
}
extern "C" {
    pub fn HAL_GetAccumulatorOutput(analogPortHandle: HAL_AnalogInputHandle,
                                    value: *mut i64, count: *mut i64,
                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_InitializeAnalogGyro(handle: HAL_AnalogInputHandle,
                                    status: *mut i32) -> HAL_GyroHandle;
}
extern "C" {
    pub fn HAL_SetupAnalogGyro(handle: HAL_GyroHandle, status: *mut i32);
}
extern "C" {
    pub fn HAL_FreeAnalogGyro(handle: HAL_GyroHandle);
}
extern "C" {
    pub fn HAL_SetAnalogGyroParameters(handle: HAL_GyroHandle,
                                       voltsPerDegreePerSecond:
                                           ::std::os::raw::c_double,
                                       offset: ::std::os::raw::c_double,
                                       center: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAnalogGyroVoltsPerDegreePerSecond(handle: HAL_GyroHandle,
                                                    voltsPerDegreePerSecond:
                                                        ::std::os::raw::c_double,
                                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_ResetAnalogGyro(handle: HAL_GyroHandle, status: *mut i32);
}
extern "C" {
    pub fn HAL_CalibrateAnalogGyro(handle: HAL_GyroHandle, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAnalogGyroDeadband(handle: HAL_GyroHandle,
                                     volts: ::std::os::raw::c_double,
                                     status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAnalogGyroAngle(handle: HAL_GyroHandle, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAnalogGyroRate(handle: HAL_GyroHandle, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAnalogGyroOffset(handle: HAL_GyroHandle, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAnalogGyroCenter(handle: HAL_GyroHandle, status: *mut i32)
     -> i32;
}
extern "C" {
    pub fn HAL_InitializeAnalogInputPort(portHandle: HAL_PortHandle,
                                         status: *mut i32)
     -> HAL_AnalogInputHandle;
}
extern "C" {
    pub fn HAL_FreeAnalogInputPort(analogPortHandle: HAL_AnalogInputHandle);
}
extern "C" {
    pub fn HAL_CheckAnalogModule(module: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_CheckAnalogInputChannel(channel: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetAnalogSampleRate(samplesPerSecond: ::std::os::raw::c_double,
                                   status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAnalogSampleRate(status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_SetAnalogAverageBits(analogPortHandle: HAL_AnalogInputHandle,
                                    bits: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAnalogAverageBits(analogPortHandle: HAL_AnalogInputHandle,
                                    status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_SetAnalogOversampleBits(analogPortHandle:
                                           HAL_AnalogInputHandle, bits: i32,
                                       status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAnalogOversampleBits(analogPortHandle:
                                           HAL_AnalogInputHandle,
                                       status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetAnalogValue(analogPortHandle: HAL_AnalogInputHandle,
                              status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetAnalogAverageValue(analogPortHandle: HAL_AnalogInputHandle,
                                     status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetAnalogVoltsToValue(analogPortHandle: HAL_AnalogInputHandle,
                                     voltage: ::std::os::raw::c_double,
                                     status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetAnalogVoltage(analogPortHandle: HAL_AnalogInputHandle,
                                status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAnalogAverageVoltage(analogPortHandle:
                                           HAL_AnalogInputHandle,
                                       status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetAnalogLSBWeight(analogPortHandle: HAL_AnalogInputHandle,
                                  status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetAnalogOffset(analogPortHandle: HAL_AnalogInputHandle,
                               status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_InitializeAnalogOutputPort(portHandle: HAL_PortHandle,
                                          status: *mut i32)
     -> HAL_AnalogOutputHandle;
}
extern "C" {
    pub fn HAL_FreeAnalogOutputPort(analogOutputHandle:
                                        HAL_AnalogOutputHandle);
}
extern "C" {
    pub fn HAL_SetAnalogOutput(analogOutputHandle: HAL_AnalogOutputHandle,
                               voltage: ::std::os::raw::c_double,
                               status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAnalogOutput(analogOutputHandle: HAL_AnalogOutputHandle,
                               status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_CheckAnalogOutputChannel(channel: i32) -> HAL_Bool;
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum HAL_AnalogTriggerType {
    HAL_Trigger_kInWindow = 0,
    HAL_Trigger_kState = 1,
    HAL_Trigger_kRisingPulse = 2,
    HAL_Trigger_kFallingPulse = 3,
}
extern "C" {
    pub fn HAL_InitializeAnalogTrigger(portHandle: HAL_AnalogInputHandle,
                                       index: *mut i32, status: *mut i32)
     -> HAL_AnalogTriggerHandle;
}
extern "C" {
    pub fn HAL_CleanAnalogTrigger(analogTriggerHandle:
                                      HAL_AnalogTriggerHandle,
                                  status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAnalogTriggerLimitsRaw(analogTriggerHandle:
                                             HAL_AnalogTriggerHandle,
                                         lower: i32, upper: i32,
                                         status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAnalogTriggerLimitsVoltage(analogTriggerHandle:
                                                 HAL_AnalogTriggerHandle,
                                             lower: ::std::os::raw::c_double,
                                             upper: ::std::os::raw::c_double,
                                             status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAnalogTriggerAveraged(analogTriggerHandle:
                                            HAL_AnalogTriggerHandle,
                                        useAveragedValue: HAL_Bool,
                                        status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAnalogTriggerFiltered(analogTriggerHandle:
                                            HAL_AnalogTriggerHandle,
                                        useFilteredValue: HAL_Bool,
                                        status: *mut i32);
}
extern "C" {
    pub fn HAL_GetAnalogTriggerInWindow(analogTriggerHandle:
                                            HAL_AnalogTriggerHandle,
                                        status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetAnalogTriggerTriggerState(analogTriggerHandle:
                                                HAL_AnalogTriggerHandle,
                                            status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetAnalogTriggerOutput(analogTriggerHandle:
                                          HAL_AnalogTriggerHandle,
                                      type_: HAL_AnalogTriggerType,
                                      status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_InitializeCompressor(module: i32, status: *mut i32)
     -> HAL_CompressorHandle;
}
extern "C" {
    pub fn HAL_CheckCompressorModule(module: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressor(compressorHandle: HAL_CompressorHandle,
                             status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetCompressorClosedLoopControl(compressorHandle:
                                                  HAL_CompressorHandle,
                                              value: HAL_Bool,
                                              status: *mut i32);
}
extern "C" {
    pub fn HAL_GetCompressorClosedLoopControl(compressorHandle:
                                                  HAL_CompressorHandle,
                                              status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorPressureSwitch(compressorHandle:
                                               HAL_CompressorHandle,
                                           status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorCurrent(compressorHandle: HAL_CompressorHandle,
                                    status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetCompressorCurrentTooHighFault(compressorHandle:
                                                    HAL_CompressorHandle,
                                                status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorCurrentTooHighStickyFault(compressorHandle:
                                                          HAL_CompressorHandle,
                                                      status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorShortedStickyFault(compressorHandle:
                                                   HAL_CompressorHandle,
                                               status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorShortedFault(compressorHandle:
                                             HAL_CompressorHandle,
                                         status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorNotConnectedStickyFault(compressorHandle:
                                                        HAL_CompressorHandle,
                                                    status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCompressorNotConnectedFault(compressorHandle:
                                                  HAL_CompressorHandle,
                                              status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetSystemClockTicksPerMicrosecond() -> i32;
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum HAL_Counter_Mode {
    HAL_Counter_kTwoPulse = 0,
    HAL_Counter_kSemiperiod = 1,
    HAL_Counter_kPulseLength = 2,
    HAL_Counter_kExternalDirection = 3,
}
extern "C" {
    pub fn HAL_InitializeCounter(mode: HAL_Counter_Mode, index: *mut i32,
                                 status: *mut i32) -> HAL_CounterHandle;
}
extern "C" {
    pub fn HAL_FreeCounter(counterHandle: HAL_CounterHandle,
                           status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterAverageSize(counterHandle: HAL_CounterHandle,
                                     size: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterUpSource(counterHandle: HAL_CounterHandle,
                                  digitalSourceHandle: HAL_Handle,
                                  analogTriggerType: HAL_AnalogTriggerType,
                                  status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterUpSourceEdge(counterHandle: HAL_CounterHandle,
                                      risingEdge: HAL_Bool,
                                      fallingEdge: HAL_Bool,
                                      status: *mut i32);
}
extern "C" {
    pub fn HAL_ClearCounterUpSource(counterHandle: HAL_CounterHandle,
                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterDownSource(counterHandle: HAL_CounterHandle,
                                    digitalSourceHandle: HAL_Handle,
                                    analogTriggerType: HAL_AnalogTriggerType,
                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterDownSourceEdge(counterHandle: HAL_CounterHandle,
                                        risingEdge: HAL_Bool,
                                        fallingEdge: HAL_Bool,
                                        status: *mut i32);
}
extern "C" {
    pub fn HAL_ClearCounterDownSource(counterHandle: HAL_CounterHandle,
                                      status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterUpDownMode(counterHandle: HAL_CounterHandle,
                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterExternalDirectionMode(counterHandle:
                                                   HAL_CounterHandle,
                                               status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterSemiPeriodMode(counterHandle: HAL_CounterHandle,
                                        highSemiPeriod: HAL_Bool,
                                        status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterPulseLengthMode(counterHandle: HAL_CounterHandle,
                                         threshold: ::std::os::raw::c_double,
                                         status: *mut i32);
}
extern "C" {
    pub fn HAL_GetCounterSamplesToAverage(counterHandle: HAL_CounterHandle,
                                          status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_SetCounterSamplesToAverage(counterHandle: HAL_CounterHandle,
                                          samplesToAverage: i32,
                                          status: *mut i32);
}
extern "C" {
    pub fn HAL_ResetCounter(counterHandle: HAL_CounterHandle,
                            status: *mut i32);
}
extern "C" {
    pub fn HAL_GetCounter(counterHandle: HAL_CounterHandle, status: *mut i32)
     -> i32;
}
extern "C" {
    pub fn HAL_GetCounterPeriod(counterHandle: HAL_CounterHandle,
                                status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_SetCounterMaxPeriod(counterHandle: HAL_CounterHandle,
                                   maxPeriod: ::std::os::raw::c_double,
                                   status: *mut i32);
}
extern "C" {
    pub fn HAL_SetCounterUpdateWhenEmpty(counterHandle: HAL_CounterHandle,
                                         enabled: HAL_Bool, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetCounterStopped(counterHandle: HAL_CounterHandle,
                                 status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetCounterDirection(counterHandle: HAL_CounterHandle,
                                   status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetCounterReverseDirection(counterHandle: HAL_CounterHandle,
                                          reverseDirection: HAL_Bool,
                                          status: *mut i32);
}
extern "C" {
    pub fn HAL_InitializeDIOPort(portHandle: HAL_PortHandle, input: HAL_Bool,
                                 status: *mut i32) -> HAL_DigitalHandle;
}
extern "C" {
    pub fn HAL_CheckDIOChannel(channel: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_FreeDIOPort(dioPortHandle: HAL_DigitalHandle);
}
extern "C" {
    pub fn HAL_AllocateDigitalPWM(status: *mut i32) -> HAL_DigitalPWMHandle;
}
extern "C" {
    pub fn HAL_FreeDigitalPWM(pwmGenerator: HAL_DigitalPWMHandle,
                              status: *mut i32);
}
extern "C" {
    pub fn HAL_SetDigitalPWMRate(rate: ::std::os::raw::c_double,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_SetDigitalPWMDutyCycle(pwmGenerator: HAL_DigitalPWMHandle,
                                      dutyCycle: ::std::os::raw::c_double,
                                      status: *mut i32);
}
extern "C" {
    pub fn HAL_SetDigitalPWMOutputChannel(pwmGenerator: HAL_DigitalPWMHandle,
                                          channel: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetDIO(dioPortHandle: HAL_DigitalHandle, value: HAL_Bool,
                      status: *mut i32);
}
extern "C" {
    pub fn HAL_GetDIO(dioPortHandle: HAL_DigitalHandle, status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetDIODirection(dioPortHandle: HAL_DigitalHandle,
                               status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_Pulse(dioPortHandle: HAL_DigitalHandle,
                     pulseLength: ::std::os::raw::c_double, status: *mut i32);
}
extern "C" {
    pub fn HAL_IsPulsing(dioPortHandle: HAL_DigitalHandle, status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_IsAnyPulsing(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetFilterSelect(dioPortHandle: HAL_DigitalHandle,
                               filterIndex: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetFilterSelect(dioPortHandle: HAL_DigitalHandle,
                               status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_SetFilterPeriod(filterIndex: i32, value: i64,
                               status: *mut i32);
}
extern "C" {
    pub fn HAL_GetFilterPeriod(filterIndex: i32, status: *mut i32) -> i64;
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct HAL_ControlWord {
    pub _bitfield_1: u32,
    pub __bindgen_align: [u32; 0usize],
}
#[test]
fn bindgen_test_layout_HAL_ControlWord() {
    assert_eq!(::std::mem::size_of::<HAL_ControlWord>() , 4usize , concat ! (
               "Size of: " , stringify ! ( HAL_ControlWord ) ));
    assert_eq! (::std::mem::align_of::<HAL_ControlWord>() , 4usize , concat !
                ( "Alignment of " , stringify ! ( HAL_ControlWord ) ));
}
impl Clone for HAL_ControlWord {
    fn clone(&self) -> Self { *self }
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum HAL_AllianceStationID {
    HAL_AllianceStationID_kRed1 = 0,
    HAL_AllianceStationID_kRed2 = 1,
    HAL_AllianceStationID_kRed3 = 2,
    HAL_AllianceStationID_kBlue1 = 3,
    HAL_AllianceStationID_kBlue2 = 4,
    HAL_AllianceStationID_kBlue3 = 5,
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct HAL_JoystickAxes {
    pub count: i16,
    pub axes: [::std::os::raw::c_float; 12usize],
}
#[test]
fn bindgen_test_layout_HAL_JoystickAxes() {
    assert_eq!(::std::mem::size_of::<HAL_JoystickAxes>() , 52usize , concat !
               ( "Size of: " , stringify ! ( HAL_JoystickAxes ) ));
    assert_eq! (::std::mem::align_of::<HAL_JoystickAxes>() , 4usize , concat !
                ( "Alignment of " , stringify ! ( HAL_JoystickAxes ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickAxes ) ) . count as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickAxes ) ,
                "::" , stringify ! ( count ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickAxes ) ) . axes as * const _
                as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickAxes ) ,
                "::" , stringify ! ( axes ) ));
}
impl Clone for HAL_JoystickAxes {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct HAL_JoystickPOVs {
    pub count: i16,
    pub povs: [i16; 12usize],
}
#[test]
fn bindgen_test_layout_HAL_JoystickPOVs() {
    assert_eq!(::std::mem::size_of::<HAL_JoystickPOVs>() , 26usize , concat !
               ( "Size of: " , stringify ! ( HAL_JoystickPOVs ) ));
    assert_eq! (::std::mem::align_of::<HAL_JoystickPOVs>() , 2usize , concat !
                ( "Alignment of " , stringify ! ( HAL_JoystickPOVs ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickPOVs ) ) . count as * const _
                as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickPOVs ) ,
                "::" , stringify ! ( count ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickPOVs ) ) . povs as * const _
                as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickPOVs ) ,
                "::" , stringify ! ( povs ) ));
}
impl Clone for HAL_JoystickPOVs {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Copy)]
pub struct HAL_JoystickButtons {
    pub buttons: u32,
    pub count: u8,
}
#[test]
fn bindgen_test_layout_HAL_JoystickButtons() {
    assert_eq!(::std::mem::size_of::<HAL_JoystickButtons>() , 8usize , concat
               ! ( "Size of: " , stringify ! ( HAL_JoystickButtons ) ));
    assert_eq! (::std::mem::align_of::<HAL_JoystickButtons>() , 4usize ,
                concat ! (
                "Alignment of " , stringify ! ( HAL_JoystickButtons ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickButtons ) ) . buttons as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickButtons ) ,
                "::" , stringify ! ( buttons ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickButtons ) ) . count as *
                const _ as usize } , 4usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickButtons ) ,
                "::" , stringify ! ( count ) ));
}
impl Clone for HAL_JoystickButtons {
    fn clone(&self) -> Self { *self }
}
#[repr(C)]
pub struct HAL_JoystickDescriptor {
    pub isXbox: u8,
    pub type_: u8,
    pub name: [::std::os::raw::c_char; 256usize],
    pub axisCount: u8,
    pub axisTypes: [u8; 12usize],
    pub buttonCount: u8,
    pub povCount: u8,
}
#[test]
fn bindgen_test_layout_HAL_JoystickDescriptor() {
    assert_eq!(::std::mem::size_of::<HAL_JoystickDescriptor>() , 273usize ,
               concat ! ( "Size of: " , stringify ! ( HAL_JoystickDescriptor )
               ));
    assert_eq! (::std::mem::align_of::<HAL_JoystickDescriptor>() , 1usize ,
                concat ! (
                "Alignment of " , stringify ! ( HAL_JoystickDescriptor ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . isXbox as *
                const _ as usize } , 0usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( isXbox ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . type_ as *
                const _ as usize } , 1usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( type_ ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . name as *
                const _ as usize } , 2usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( name ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . axisCount as
                * const _ as usize } , 258usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( axisCount ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . axisTypes as
                * const _ as usize } , 259usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( axisTypes ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . buttonCount
                as * const _ as usize } , 271usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( buttonCount ) ));
    assert_eq! (unsafe {
                & ( * ( 0 as * const HAL_JoystickDescriptor ) ) . povCount as
                * const _ as usize } , 272usize , concat ! (
                "Alignment of field: " , stringify ! ( HAL_JoystickDescriptor
                ) , "::" , stringify ! ( povCount ) ));
}
extern "C" {
    pub fn HAL_SetErrorData(errors: *const ::std::os::raw::c_char,
                            errorsLength: i32, waitMs: i32) -> i32;
}
extern "C" {
    pub fn HAL_SendError(isError: HAL_Bool, errorCode: i32,
                         isLVCode: HAL_Bool,
                         details: *const ::std::os::raw::c_char,
                         location: *const ::std::os::raw::c_char,
                         callStack: *const ::std::os::raw::c_char,
                         printMsg: HAL_Bool) -> i32;
}
extern "C" {
    pub fn HAL_GetControlWord(controlWord: *mut HAL_ControlWord) -> i32;
}
extern "C" {
    pub fn HAL_GetAllianceStation(status: *mut i32) -> HAL_AllianceStationID;
}
extern "C" {
    pub fn HAL_GetJoystickAxes(joystickNum: i32, axes: *mut HAL_JoystickAxes)
     -> i32;
}
extern "C" {
    pub fn HAL_GetJoystickPOVs(joystickNum: i32, povs: *mut HAL_JoystickPOVs)
     -> i32;
}
extern "C" {
    pub fn HAL_GetJoystickButtons(joystickNum: i32,
                                  buttons: *mut HAL_JoystickButtons) -> i32;
}
extern "C" {
    pub fn HAL_GetJoystickDescriptor(joystickNum: i32,
                                     desc: *mut HAL_JoystickDescriptor)
     -> i32;
}
extern "C" {
    pub fn HAL_GetJoystickIsXbox(joystickNum: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetJoystickType(joystickNum: i32) -> i32;
}
extern "C" {
    pub fn HAL_GetJoystickName(joystickNum: i32)
     -> *mut ::std::os::raw::c_char;
}
extern "C" {
    pub fn HAL_GetJoystickAxisType(joystickNum: i32, axis: i32) -> i32;
}
extern "C" {
    pub fn HAL_SetJoystickOutputs(joystickNum: i32, outputs: i64,
                                  leftRumble: i32, rightRumble: i32) -> i32;
}
extern "C" {
    pub fn HAL_GetMatchTime(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_WaitForDSData();
}
extern "C" {
    pub fn HAL_InitializeDriverStation();
}
extern "C" {
    pub fn HAL_ObserveUserProgramStarting();
}
extern "C" {
    pub fn HAL_ObserveUserProgramDisabled();
}
extern "C" {
    pub fn HAL_ObserveUserProgramAutonomous();
}
extern "C" {
    pub fn HAL_ObserveUserProgramTeleop();
}
extern "C" {
    pub fn HAL_ObserveUserProgramTest();
}
extern "C" {
    pub fn HAL_InitializeI2C(port: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_TransactionI2C(port: i32, deviceAddress: i32,
                              dataToSend: *mut u8, sendSize: i32,
                              dataReceived: *mut u8, receiveSize: i32) -> i32;
}
extern "C" {
    pub fn HAL_WriteI2C(port: i32, deviceAddress: i32, dataToSend: *mut u8,
                        sendSize: i32) -> i32;
}
extern "C" {
    pub fn HAL_ReadI2C(port: i32, deviceAddress: i32, buffer: *mut u8,
                       count: i32) -> i32;
}
extern "C" {
    pub fn HAL_CloseI2C(port: i32);
}
pub type HAL_InterruptHandlerFunction =
    ::std::option::Option<unsafe extern "C" fn(interruptAssertedMask: u32,
                                               param:
                                                   *mut ::std::os::raw::c_void)>;
extern "C" {
    pub fn HAL_InitializeInterrupts(watcher: HAL_Bool, status: *mut i32)
     -> HAL_InterruptHandle;
}
extern "C" {
    pub fn HAL_CleanInterrupts(interruptHandle: HAL_InterruptHandle,
                               status: *mut i32);
}
extern "C" {
    pub fn HAL_WaitForInterrupt(interruptHandle: HAL_InterruptHandle,
                                timeout: ::std::os::raw::c_double,
                                ignorePrevious: HAL_Bool, status: *mut i32)
     -> i64;
}
extern "C" {
    pub fn HAL_EnableInterrupts(interruptHandle: HAL_InterruptHandle,
                                status: *mut i32);
}
extern "C" {
    pub fn HAL_DisableInterrupts(interruptHandle: HAL_InterruptHandle,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_ReadInterruptRisingTimestamp(interruptHandle:
                                                HAL_InterruptHandle,
                                            status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_ReadInterruptFallingTimestamp(interruptHandle:
                                                 HAL_InterruptHandle,
                                             status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_RequestInterrupts(interruptHandle: HAL_InterruptHandle,
                                 digitalSourceHandle: HAL_Handle,
                                 analogTriggerType: HAL_AnalogTriggerType,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_AttachInterruptHandler(interruptHandle: HAL_InterruptHandle,
                                      handler: HAL_InterruptHandlerFunction,
                                      param: *mut ::std::os::raw::c_void,
                                      status: *mut i32);
}
extern "C" {
    pub fn HAL_AttachInterruptHandlerThreaded(interruptHandle:
                                                  HAL_InterruptHandle,
                                              handler:
                                                  HAL_InterruptHandlerFunction,
                                              param:
                                                  *mut ::std::os::raw::c_void,
                                              status: *mut i32);
}
extern "C" {
    pub fn HAL_SetInterruptUpSourceEdge(interruptHandle: HAL_InterruptHandle,
                                        risingEdge: HAL_Bool,
                                        fallingEdge: HAL_Bool,
                                        status: *mut i32);
}
pub type HAL_NotifierProcessFunction =
    ::std::option::Option<unsafe extern "C" fn(currentTime: u64,
                                               handle: HAL_NotifierHandle)>;
extern "C" {
    pub fn HAL_InitializeNotifier(process: HAL_NotifierProcessFunction,
                                  param: *mut ::std::os::raw::c_void,
                                  status: *mut i32) -> HAL_NotifierHandle;
}
extern "C" {
    pub fn HAL_InitializeNotifierThreaded(process:
                                              HAL_NotifierProcessFunction,
                                          param: *mut ::std::os::raw::c_void,
                                          status: *mut i32)
     -> HAL_NotifierHandle;
}
extern "C" {
    pub fn HAL_CleanNotifier(notifierHandle: HAL_NotifierHandle,
                             status: *mut i32);
}
extern "C" {
    pub fn HAL_GetNotifierParam(notifierHandle: HAL_NotifierHandle,
                                status: *mut i32)
     -> *mut ::std::os::raw::c_void;
}
extern "C" {
    pub fn HAL_UpdateNotifierAlarm(notifierHandle: HAL_NotifierHandle,
                                   triggerTime: u64, status: *mut i32);
}
extern "C" {
    pub fn HAL_StopNotifierAlarm(notifierHandle: HAL_NotifierHandle,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_InitializePDP(module: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_CheckPDPChannel(channel: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_CheckPDPModule(module: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetPDPTemperature(module: i32, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetPDPVoltage(module: i32, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetPDPChannelCurrent(module: i32, channel: i32,
                                    status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetPDPTotalCurrent(module: i32, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetPDPTotalPower(module: i32, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetPDPTotalEnergy(module: i32, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_ResetPDPTotalEnergy(module: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_ClearPDPStickyFaults(module: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_InitializePWMPort(portHandle: HAL_PortHandle, status: *mut i32)
     -> HAL_DigitalHandle;
}
extern "C" {
    pub fn HAL_FreePWMPort(pwmPortHandle: HAL_DigitalHandle,
                           status: *mut i32);
}
extern "C" {
    pub fn HAL_CheckPWMChannel(channel: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetPWMConfig(pwmPortHandle: HAL_DigitalHandle,
                            maxPwm: ::std::os::raw::c_double,
                            deadbandMaxPwm: ::std::os::raw::c_double,
                            centerPwm: ::std::os::raw::c_double,
                            deadbandMinPwm: ::std::os::raw::c_double,
                            minPwm: ::std::os::raw::c_double,
                            status: *mut i32);
}
extern "C" {
    pub fn HAL_SetPWMConfigRaw(pwmPortHandle: HAL_DigitalHandle, maxPwm: i32,
                               deadbandMaxPwm: i32, centerPwm: i32,
                               deadbandMinPwm: i32, minPwm: i32,
                               status: *mut i32);
}
extern "C" {
    pub fn HAL_GetPWMConfigRaw(pwmPortHandle: HAL_DigitalHandle,
                               maxPwm: *mut i32, deadbandMaxPwm: *mut i32,
                               centerPwm: *mut i32, deadbandMinPwm: *mut i32,
                               minPwm: *mut i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetPWMEliminateDeadband(pwmPortHandle: HAL_DigitalHandle,
                                       eliminateDeadband: HAL_Bool,
                                       status: *mut i32);
}
extern "C" {
    pub fn HAL_GetPWMEliminateDeadband(pwmPortHandle: HAL_DigitalHandle,
                                       status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetPWMRaw(pwmPortHandle: HAL_DigitalHandle, value: i32,
                         status: *mut i32);
}
extern "C" {
    pub fn HAL_SetPWMSpeed(pwmPortHandle: HAL_DigitalHandle,
                           speed: ::std::os::raw::c_double, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetPWMPosition(pwmPortHandle: HAL_DigitalHandle,
                              position: ::std::os::raw::c_double,
                              status: *mut i32);
}
extern "C" {
    pub fn HAL_SetPWMDisabled(pwmPortHandle: HAL_DigitalHandle,
                              status: *mut i32);
}
extern "C" {
    pub fn HAL_GetPWMRaw(pwmPortHandle: HAL_DigitalHandle, status: *mut i32)
     -> i32;
}
extern "C" {
    pub fn HAL_GetPWMSpeed(pwmPortHandle: HAL_DigitalHandle, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetPWMPosition(pwmPortHandle: HAL_DigitalHandle,
                              status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_LatchPWMZero(pwmPortHandle: HAL_DigitalHandle,
                            status: *mut i32);
}
extern "C" {
    pub fn HAL_SetPWMPeriodScale(pwmPortHandle: HAL_DigitalHandle,
                                 squelchMask: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetLoopTiming(status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetNumAccumulators() -> i32;
}
extern "C" {
    pub fn HAL_GetNumAnalogTriggers() -> i32;
}
extern "C" {
    pub fn HAL_GetNumAnalogInputs() -> i32;
}
extern "C" {
    pub fn HAL_GetNumAnalogOutputs() -> i32;
}
extern "C" {
    pub fn HAL_GetNumCounters() -> i32;
}
extern "C" {
    pub fn HAL_GetNumDigitalHeaders() -> i32;
}
extern "C" {
    pub fn HAL_GetNumPWMHeaders() -> i32;
}
extern "C" {
    pub fn HAL_GetNumDigitalChannels() -> i32;
}
extern "C" {
    pub fn HAL_GetNumPWMChannels() -> i32;
}
extern "C" {
    pub fn HAL_GetNumDigitalPWMOutputs() -> i32;
}
extern "C" {
    pub fn HAL_GetNumEncoders() -> i32;
}
extern "C" {
    pub fn HAL_GetNumInterrupts() -> i32;
}
extern "C" {
    pub fn HAL_GetNumRelayChannels() -> i32;
}
extern "C" {
    pub fn HAL_GetNumRelayHeaders() -> i32;
}
extern "C" {
    pub fn HAL_GetNumPCMModules() -> i32;
}
extern "C" {
    pub fn HAL_GetNumSolenoidChannels() -> i32;
}
extern "C" {
    pub fn HAL_GetNumPDPModules() -> i32;
}
extern "C" {
    pub fn HAL_GetNumPDPChannels() -> i32;
}
extern "C" {
    pub fn HAL_GetVinVoltage(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetVinCurrent(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserVoltage6V(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserCurrent6V(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserActive6V(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetUserCurrentFaults6V(status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetUserVoltage5V(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserCurrent5V(status: *mut i32) -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserActive5V(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetUserCurrentFaults5V(status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetUserVoltage3V3(status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserCurrent3V3(status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetUserActive3V3(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetUserCurrentFaults3V3(status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_InitializeRelayPort(portHandle: HAL_PortHandle, fwd: HAL_Bool,
                                   status: *mut i32) -> HAL_RelayHandle;
}
extern "C" {
    pub fn HAL_FreeRelayPort(relayPortHandle: HAL_RelayHandle);
}
extern "C" {
    pub fn HAL_CheckRelayChannel(channel: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_SetRelay(relayPortHandle: HAL_RelayHandle, on: HAL_Bool,
                        status: *mut i32);
}
extern "C" {
    pub fn HAL_GetRelay(relayPortHandle: HAL_RelayHandle, status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_InitializeSPI(port: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_TransactionSPI(port: i32, dataToSend: *mut u8,
                              dataReceived: *mut u8, size: i32) -> i32;
}
extern "C" {
    pub fn HAL_WriteSPI(port: i32, dataToSend: *mut u8, sendSize: i32) -> i32;
}
extern "C" {
    pub fn HAL_ReadSPI(port: i32, buffer: *mut u8, count: i32) -> i32;
}
extern "C" {
    pub fn HAL_CloseSPI(port: i32);
}
extern "C" {
    pub fn HAL_SetSPISpeed(port: i32, speed: i32);
}
extern "C" {
    pub fn HAL_SetSPIOpts(port: i32, msbFirst: HAL_Bool,
                          sampleOnTrailing: HAL_Bool, clkIdleHigh: HAL_Bool);
}
extern "C" {
    pub fn HAL_SetSPIChipSelectActiveHigh(port: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSPIChipSelectActiveLow(port: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetSPIHandle(port: i32) -> i32;
}
extern "C" {
    pub fn HAL_SetSPIHandle(port: i32, handle: i32);
}
extern "C" {
    pub fn HAL_InitSPIAccumulator(port: i32, period: i32, cmd: i32,
                                  xferSize: i32, validMask: i32,
                                  validValue: i32, dataShift: i32,
                                  dataSize: i32, isSigned: HAL_Bool,
                                  bigEndian: HAL_Bool, status: *mut i32);
}
extern "C" {
    pub fn HAL_FreeSPIAccumulator(port: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_ResetSPIAccumulator(port: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSPIAccumulatorCenter(port: i32, center: i32,
                                       status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSPIAccumulatorDeadband(port: i32, deadband: i32,
                                         status: *mut i32);
}
extern "C" {
    pub fn HAL_GetSPIAccumulatorLastValue(port: i32, status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetSPIAccumulatorValue(port: i32, status: *mut i32) -> i64;
}
extern "C" {
    pub fn HAL_GetSPIAccumulatorCount(port: i32, status: *mut i32) -> i64;
}
extern "C" {
    pub fn HAL_GetSPIAccumulatorAverage(port: i32, status: *mut i32)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_GetSPIAccumulatorOutput(port: i32, value: *mut i64,
                                       count: *mut i64, status: *mut i32);
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum HAL_SerialPort {
    HAL_SerialPort_Onboard = 0,
    HAL_SerialPort_MXP = 1,
    HAL_SerialPort_USB1 = 2,
    HAL_SerialPort_USB2 = 3,
}
extern "C" {
    pub fn HAL_InitializeSerialPort(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialBaudRate(port: HAL_SerialPort, baud: i32,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialDataBits(port: HAL_SerialPort, bits: i32,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialParity(port: HAL_SerialPort, parity: i32,
                               status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialStopBits(port: HAL_SerialPort, stopBits: i32,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialWriteMode(port: HAL_SerialPort, mode: i32,
                                  status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialFlowControl(port: HAL_SerialPort, flow: i32,
                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialTimeout(port: HAL_SerialPort,
                                timeout: ::std::os::raw::c_double,
                                status: *mut i32);
}
extern "C" {
    pub fn HAL_EnableSerialTermination(port: HAL_SerialPort,
                                       terminator: ::std::os::raw::c_char,
                                       status: *mut i32);
}
extern "C" {
    pub fn HAL_DisableSerialTermination(port: HAL_SerialPort,
                                        status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialReadBufferSize(port: HAL_SerialPort, size: i32,
                                       status: *mut i32);
}
extern "C" {
    pub fn HAL_SetSerialWriteBufferSize(port: HAL_SerialPort, size: i32,
                                        status: *mut i32);
}
extern "C" {
    pub fn HAL_GetSerialBytesReceived(port: HAL_SerialPort, status: *mut i32)
     -> i32;
}
extern "C" {
    pub fn HAL_ReadSerial(port: HAL_SerialPort,
                          buffer: *mut ::std::os::raw::c_char, count: i32,
                          status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_WriteSerial(port: HAL_SerialPort,
                           buffer: *const ::std::os::raw::c_char, count: i32,
                           status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_FlushSerial(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_ClearSerial(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_CloseSerial(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_InitializeSolenoidPort(portHandle: HAL_PortHandle,
                                      status: *mut i32) -> HAL_SolenoidHandle;
}
extern "C" {
    pub fn HAL_FreeSolenoidPort(solenoidPortHandle: HAL_SolenoidHandle);
}
extern "C" {
    pub fn HAL_CheckSolenoidModule(module: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_CheckSolenoidChannel(channel: i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetSolenoid(solenoidPortHandle: HAL_SolenoidHandle,
                           status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetAllSolenoids(module: i32, status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_SetSolenoid(solenoidPortHandle: HAL_SolenoidHandle,
                           value: HAL_Bool, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetAllSolenoids(module: i32, state: i32, status: *mut i32);
}
extern "C" {
    pub fn HAL_GetPCMSolenoidBlackList(module: i32, status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetPCMSolenoidVoltageStickyFault(module: i32, status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetPCMSolenoidVoltageFault(module: i32, status: *mut i32)
     -> HAL_Bool;
}
extern "C" {
    pub fn HAL_ClearAllPCMStickyFaults(module: i32, status: *mut i32);
}
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum HAL_RuntimeType { HAL_Athena = 0, HAL_Mock = 1, }
extern "C" {
    pub fn HAL_GetErrorMessage(code: i32) -> *const ::std::os::raw::c_char;
}
extern "C" {
    pub fn HAL_GetFPGAVersion(status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_GetFPGARevision(status: *mut i32) -> i64;
}
extern "C" {
    pub fn HAL_GetRuntimeType() -> HAL_RuntimeType;
}
extern "C" {
    pub fn HAL_GetFPGAButton(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetSystemActive(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_GetBrownedOut(status: *mut i32) -> HAL_Bool;
}
extern "C" {
    pub fn HAL_BaseInitialize(status: *mut i32);
}
extern "C" {
    pub fn HAL_GetPort(channel: i32) -> HAL_PortHandle;
}
extern "C" {
    pub fn HAL_GetPortWithModule(module: i32, channel: i32) -> HAL_PortHandle;
}
extern "C" {
    pub fn HAL_GetFPGATime(status: *mut i32) -> u64;
}
extern "C" {
    pub fn HAL_Initialize(mode: i32) -> i32;
}
extern "C" {
    pub fn HAL_Report(resource: i32, instanceNumber: i32, context: i32,
                      feature: *const ::std::os::raw::c_char) -> i64;
}
extern "C" {
    pub fn canTxSend(arbID: u32, length: u8, period: i32);
}
extern "C" {
    pub fn canTxPackInt8(arbID: u32, offset: u8, value: u8);
}
extern "C" {
    pub fn canTxPackInt16(arbID: u32, offset: u8, value: u16);
}
extern "C" {
    pub fn canTxPackInt32(arbID: u32, offset: u8, value: u32);
}
extern "C" {
    pub fn canTxPackFXP16(arbID: u32, offset: u8,
                          value: ::std::os::raw::c_double);
}
extern "C" {
    pub fn canTxPackFXP32(arbID: u32, offset: u8,
                          value: ::std::os::raw::c_double);
}
extern "C" {
    pub fn canTxUnpackInt8(arbID: u32, offset: u8) -> u8;
}
extern "C" {
    pub fn canTxUnpackInt32(arbID: u32, offset: u8) -> u32;
}
extern "C" {
    pub fn canTxUnpackInt16(arbID: u32, offset: u8) -> u16;
}
extern "C" {
    pub fn canTxUnpackFXP16(arbID: u32, offset: u8)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn canTxUnpackFXP32(arbID: u32, offset: u8)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn canRxReceive(arbID: u32) -> bool;
}
extern "C" {
    pub fn canRxUnpackInt8(arbID: u32, offset: u8) -> u8;
}
extern "C" {
    pub fn canRxUnpackInt16(arbID: u32, offset: u8) -> u16;
}
extern "C" {
    pub fn canRxUnpackInt32(arbID: u32, offset: u8) -> u32;
}
extern "C" {
    pub fn canRxUnpackFXP16(arbID: u32, offset: u8)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn canRxUnpackFXP32(arbID: u32, offset: u8)
     -> ::std::os::raw::c_double;
}
extern "C" {
    pub fn HAL_InitializeOSSerialPort(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialBaudRate(port: HAL_SerialPort, baud: i32,
                                   status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialDataBits(port: HAL_SerialPort, bits: i32,
                                   status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialParity(port: HAL_SerialPort, parity: i32,
                                 status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialStopBits(port: HAL_SerialPort, stopBits: i32,
                                   status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialWriteMode(port: HAL_SerialPort, mode: i32,
                                    status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialFlowControl(port: HAL_SerialPort, flow: i32,
                                      status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialTimeout(port: HAL_SerialPort,
                                  timeout: ::std::os::raw::c_double,
                                  status: *mut i32);
}
extern "C" {
    pub fn HAL_EnableOSSerialTermination(port: HAL_SerialPort,
                                         terminator: ::std::os::raw::c_char,
                                         status: *mut i32);
}
extern "C" {
    pub fn HAL_DisableOSSerialTermination(port: HAL_SerialPort,
                                          status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialReadBufferSize(port: HAL_SerialPort, size: i32,
                                         status: *mut i32);
}
extern "C" {
    pub fn HAL_SetOSSerialWriteBufferSize(port: HAL_SerialPort, size: i32,
                                          status: *mut i32);
}
extern "C" {
    pub fn HAL_GetOSSerialBytesReceived(port: HAL_SerialPort,
                                        status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_ReadOSSerial(port: HAL_SerialPort,
                            buffer: *mut ::std::os::raw::c_char, count: i32,
                            status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_WriteOSSerial(port: HAL_SerialPort,
                             buffer: *const ::std::os::raw::c_char,
                             count: i32, status: *mut i32) -> i32;
}
extern "C" {
    pub fn HAL_FlushOSSerial(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_ClearOSSerial(port: HAL_SerialPort, status: *mut i32);
}
extern "C" {
    pub fn HAL_CloseOSSerial(port: HAL_SerialPort, status: *mut i32);
}