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
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
// /////////////////////////////////////////////////////
// // DO NOT EDIT. This is a machine generated file. //
// /////////////////////////////////////////////////////
/******************************************************************************/
/* */
/* Copyright (C) 2016, FLIR Systems */
/* All rights reserved. */
/* */
/* This document is controlled to FLIR Technology Level 2. The information */
/* contained in this document pertains to a dual use product controlled for */
/* export by the Export Administration Regulations (EAR). Diversion contrary */
/* to US law is prohibited. US Department of Commerce authorization is not */
/* required prior to export or transfer to foreign persons or parties unless */
/* otherwise prohibited. */
/* */
/******************************************************************************/
#include "Client_API.h"
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetGainState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetGainState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetGainState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetGainState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetGainState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetGainState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetFfcState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetFfcState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFfcState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetFfcState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetFfcState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFfcState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetTempCorrectionState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetTempCorrectionState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetTempCorrectionState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetTempCorrectionState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetTempCorrectionState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetTempCorrectionState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetIConstL(const int16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetIConstL(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetIConstL()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetIConstL(int16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetIConstL(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetIConstL()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetIConstM(const int16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetIConstM(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetIConstM()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetIConstM(int16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetIConstM(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetIConstM()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetAveragerState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetAveragerState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetAveragerState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetAveragerState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetAveragerState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetAveragerState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetNumFFCFrames(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetNumFFCFrames(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetNumFFCFrames()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetNumFFCFrames(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetNumFFCFrames(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetNumFFCFrames()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetAveragerThreshold(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetAveragerThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetAveragerThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetTestRampState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetTestRampState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetTestRampState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetTestRampState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetTestRampState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetTestRampState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetSffcState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetSffcState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetSffcState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetSffcState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetSffcState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetSffcState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRpmState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRpmState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRpmState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRpmState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRpmState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRpmState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRpmThreshold(uint16_t *threshold){
FLR_RESULT returncode = CLIENT_pkgGaoGetRpmThreshold(threshold);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRpmThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetFfcZeroMeanState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgGaoSetFfcZeroMeanState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFfcZeroMeanState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetFfcZeroMeanState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetFfcZeroMeanState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFfcZeroMeanState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsPopThreshold(const uint16_t threshold){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsPopThreshold(threshold);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsPopThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsPopThreshold(uint16_t *threshold){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsPopThreshold(threshold);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsPopThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsCloseThreshold(const uint16_t threshold){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsCloseThreshold(threshold);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsCloseThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsCloseThreshold(uint16_t *threshold){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsCloseThreshold(threshold);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsCloseThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsTooFewQuit(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsTooFewQuit(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsTooFewQuit()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsTooFewQuit(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsTooFewQuit(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsTooFewQuit()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsTooFew(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsTooFew(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsTooFew()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsTooFew(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsTooFew(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsTooFew()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsMinCorrection(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsMinCorrection(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsMinCorrection()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsMinCorrection(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsMinCorrection(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsMinCorrection()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsDamping(const uint8_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsDamping(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsDamping()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsDamping(uint8_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsDamping(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsDamping()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsFrameHysteresis(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsFrameHysteresis(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsFrameHysteresis()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsFrameHysteresis(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsFrameHysteresis(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsFrameHysteresis()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsBadDamping(const uint8_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsBadDamping(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsBadDamping()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsBadDamping(uint8_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsBadDamping(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsBadDamping()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoSetRnsNumGoodDampingThreshold(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgGaoSetRnsNumGoodDampingThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetRnsNumGoodDampingThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsNumGoodDampingThreshold(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsNumGoodDampingThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsNumGoodDampingThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT gaoGetRnsFfcDesired(uint32_t *data){
FLR_RESULT returncode = CLIENT_pkgGaoGetRnsFfcDesired(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetRnsFfcDesired()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFPATemp(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetFPATemp(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFPATemp()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFrameCount(uint32_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetFrameCount(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFrameCount()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetActiveNormalizationTarget(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetActiveNormalizationTarget(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetActiveNormalizationTarget()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicSetFPARampState(const FLR_ENABLE_E state){
FLR_RESULT returncode = CLIENT_pkgRoicSetFPARampState(state);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFPARampState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFPARampState(FLR_ENABLE_E *state){
FLR_RESULT returncode = CLIENT_pkgRoicGetFPARampState(state);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFPARampState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetSensorADC1(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetSensorADC1(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetSensorADC1()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetSensorADC2(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetSensorADC2(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetSensorADC2()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicSetFPATempOffset(const int16_t data){
FLR_RESULT returncode = CLIENT_pkgRoicSetFPATempOffset(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFPATempOffset()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFPATempOffset(int16_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetFPATempOffset(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFPATempOffset()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicSetFPATempMode(const FLR_ROIC_TEMP_MODE_E data){
FLR_RESULT returncode = CLIENT_pkgRoicSetFPATempMode(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFPATempMode()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFPATempMode(FLR_ROIC_TEMP_MODE_E *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetFPATempMode(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFPATempMode()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFPATempTable(FLR_ROIC_FPATEMP_TABLE_T *table){
FLR_RESULT returncode = CLIENT_pkgRoicGetFPATempTable(table);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFPATempTable()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicSetFPATempValue(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgRoicSetFPATempValue(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFPATempValue()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT roicGetFPATempValue(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgRoicGetFPATempValue(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFPATempValue()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bprSetState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgBprSetState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bprGetState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgBprGetState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT telemetrySetState(const FLR_ENABLE_E data){
FLR_RESULT returncode = CLIENT_pkgTelemetrySetState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT telemetryGetState(FLR_ENABLE_E *data){
FLR_RESULT returncode = CLIENT_pkgTelemetryGetState(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetState()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT telemetrySetLocation(const FLR_TELEMETRY_LOC_E data){
FLR_RESULT returncode = CLIENT_pkgTelemetrySetLocation(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetLocation()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT telemetryGetLocation(FLR_TELEMETRY_LOC_E *data){
FLR_RESULT returncode = CLIENT_pkgTelemetryGetLocation(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetLocation()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT telemetrySetPacking(const FLR_TELEMETRY_PACKING_E data){
FLR_RESULT returncode = CLIENT_pkgTelemetrySetPacking(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetPacking()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT telemetryGetPacking(FLR_TELEMETRY_PACKING_E *data){
FLR_RESULT returncode = CLIENT_pkgTelemetryGetPacking(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetPacking()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetCameraSN(uint32_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonGetCameraSN(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetCameraSN()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetCameraPN(FLR_BOSON_PARTNUMBER_T *data){
FLR_RESULT returncode = CLIENT_pkgBosonGetCameraPN(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetCameraPN()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetSensorSN(uint32_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonGetSensorSN(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetSensorSN()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonRunFFC(){
FLR_RESULT returncode = CLIENT_pkgBosonRunFFC();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of RunFFC()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetFFCTempThreshold(const uint16_t data){
FLR_RESULT returncode = CLIENT_pkgBosonSetFFCTempThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFFCTempThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetFFCTempThreshold(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonGetFFCTempThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFFCTempThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetFFCFrameThreshold(const uint32_t data){
FLR_RESULT returncode = CLIENT_pkgBosonSetFFCFrameThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFFCFrameThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetFFCFrameThreshold(uint32_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonGetFFCFrameThreshold(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFFCFrameThreshold()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetFFCInProgress(int16_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonGetFFCInProgress(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFFCInProgress()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonReboot(){
FLR_RESULT returncode = CLIENT_pkgBosonReboot();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of Reboot()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetFFCMode(const FLR_BOSON_FFCMODE_E ffcMode){
FLR_RESULT returncode = CLIENT_pkgBosonSetFFCMode(ffcMode);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetFFCMode()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetFFCMode(FLR_BOSON_FFCMODE_E *ffcMode){
FLR_RESULT returncode = CLIENT_pkgBosonGetFFCMode(ffcMode);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetFFCMode()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetGainMode(const FLR_BOSON_GAINMODE_E gainMode){
FLR_RESULT returncode = CLIENT_pkgBosonSetGainMode(gainMode);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetGainMode()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetGainMode(FLR_BOSON_GAINMODE_E *gainMode){
FLR_RESULT returncode = CLIENT_pkgBosonGetGainMode(gainMode);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetGainMode()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonWriteDynamicHeaderToFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonWriteDynamicHeaderToFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of WriteDynamicHeaderToFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonReadDynamicHeaderFromFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonReadDynamicHeaderFromFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of ReadDynamicHeaderFromFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonRestoreFactoryDefaultsFromFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonRestoreFactoryDefaultsFromFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of RestoreFactoryDefaultsFromFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonRestoreFactoryBadPixelsFromFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonRestoreFactoryBadPixelsFromFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of RestoreFactoryBadPixelsFromFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonWriteBadPixelsToFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonWriteBadPixelsToFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of WriteBadPixelsToFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetSoftwareRev(uint32_t *major, uint32_t *minor, uint32_t *patch){
FLR_RESULT returncode = CLIENT_pkgBosonGetSoftwareRev(major, minor, patch);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetSoftwareRev()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetBadPixelLocation(const uint32_t row, const uint32_t col){
FLR_RESULT returncode = CLIENT_pkgBosonSetBadPixelLocation(row, col);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetBadPixelLocation()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonlookupFPATempDegCx10(int16_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonlookupFPATempDegCx10(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of lookupFPATempDegCx10()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonlookupFPATempDegKx10(uint16_t *data){
FLR_RESULT returncode = CLIENT_pkgBosonlookupFPATempDegKx10(data);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of lookupFPATempDegKx10()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonWriteLensNvFfcToFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonWriteLensNvFfcToFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of WriteLensNvFfcToFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonWriteLensGainToFlash(){
FLR_RESULT returncode = CLIENT_pkgBosonWriteLensGainToFlash();
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of WriteLensGainToFlash()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetLensNumber(const uint32_t lensNumber){
FLR_RESULT returncode = CLIENT_pkgBosonSetLensNumber(lensNumber);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetLensNumber()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetLensNumber(uint32_t *lensNumber){
FLR_RESULT returncode = CLIENT_pkgBosonGetLensNumber(lensNumber);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetLensNumber()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetTableNumber(const uint32_t tableNumber){
FLR_RESULT returncode = CLIENT_pkgBosonSetTableNumber(tableNumber);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetTableNumber()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetTableNumber(uint32_t *tableNumber){
FLR_RESULT returncode = CLIENT_pkgBosonGetTableNumber(tableNumber);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetTableNumber()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonGetSensorPN(FLR_BOSON_SENSOR_PARTNUMBER_T *sensorPN){
FLR_RESULT returncode = CLIENT_pkgBosonGetSensorPN(sensorPN);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of GetSensorPN()
// Synchronous (potentially MultiService incompatible) transmit+receive variant
FLR_RESULT bosonSetGainSwitchParams(const FLR_BOSON_GAIN_SWITCH_PARAMS_T parm_struct){
FLR_RESULT returncode = CLIENT_pkgBosonSetGainSwitchParams(parm_struct);
// Check for any errorcode
if((uint32_t) returncode){
return returncode;
}
return R_SUCCESS;
} // End of SetGainSwitchParams()