-
Notifications
You must be signed in to change notification settings - Fork 0
/
FTD2XX_NET.XML
2237 lines (2233 loc) · 103 KB
/
FTD2XX_NET.XML
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>FTD2XX_NET</name>
</assembly>
<members>
<member name="T:FTD2XX_NET.FTDI">
<summary>
Class wrapper for FTD2XX.DLL
</summary>
</member>
<member name="M:FTD2XX_NET.FTDI.#ctor">
<summary>
Constructor for the FTDI class.
</summary>
</member>
<member name="M:FTD2XX_NET.FTDI.Finalize">
<summary>
Destructor for the FTDI class.
</summary>
</member>
<member name="M:FTD2XX_NET.FTDI.LoadLibrary(System.String)">
<summary>
Built-in Windows API functions to allow us to dynamically load our own DLL.
Will allow us to use old versions of the DLL that do not have all of these functions available.
</summary>
</member>
<member name="M:FTD2XX_NET.FTDI.GetNumberOfDevices(System.UInt32@)">
<summary>
Gets the number of FTDI devices available.
</summary>
<returns>FT_STATUS value from FT_CreateDeviceInfoList in FTD2XX.DLL</returns>
<param name="devcount">The number of FTDI devices available.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetDeviceList(FTD2XX_NET.FTDI.FT_DEVICE_INFO_NODE[])">
<summary>
Gets information on all of the FTDI devices available.
</summary>
<returns>FT_STATUS value from FT_GetDeviceInfoDetail in FTD2XX.DLL</returns>
<param name="devicelist">An array of type FT_DEVICE_INFO_NODE to contain the device information for all available devices.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the supplied buffer is not large enough to contain the device info list.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.OpenByIndex(System.UInt32)">
<summary>
Opens the FTDI device with the specified index.
</summary>
<returns>FT_STATUS value from FT_Open in FTD2XX.DLL</returns>
<param name="index">Index of the device to open.
Note that this cannot be guaranteed to open a specific device.</param>
<remarks>Initialises the device to 8 data bits, 1 stop bit, no parity, no flow control and 9600 Baud.</remarks>
</member>
<member name="M:FTD2XX_NET.FTDI.OpenBySerialNumber(System.String)">
<summary>
Opens the FTDI device with the specified serial number.
</summary>
<returns>FT_STATUS value from FT_OpenEx in FTD2XX.DLL</returns>
<param name="serialnumber">Serial number of the device to open.</param>
<remarks>Initialises the device to 8 data bits, 1 stop bit, no parity, no flow control and 9600 Baud.</remarks>
</member>
<member name="M:FTD2XX_NET.FTDI.OpenByDescription(System.String)">
<summary>
Opens the FTDI device with the specified description.
</summary>
<returns>FT_STATUS value from FT_OpenEx in FTD2XX.DLL</returns>
<param name="description">Description of the device to open.</param>
<remarks>Initialises the device to 8 data bits, 1 stop bit, no parity, no flow control and 9600 Baud.</remarks>
</member>
<member name="M:FTD2XX_NET.FTDI.OpenByLocation(System.UInt32)">
<summary>
Opens the FTDI device at the specified physical location.
</summary>
<returns>FT_STATUS value from FT_OpenEx in FTD2XX.DLL</returns>
<param name="location">Location of the device to open.</param>
<remarks>Initialises the device to 8 data bits, 1 stop bit, no parity, no flow control and 9600 Baud.</remarks>
</member>
<member name="M:FTD2XX_NET.FTDI.Close">
<summary>
Closes the handle to an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Close in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.Read(System.Byte[],System.UInt32,System.UInt32@)">
<summary>
Read data from an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Read in FTD2XX.DLL</returns>
<param name="dataBuffer">An array of bytes which will be populated with the data read from the device.</param>
<param name="numBytesToRead">The number of bytes requested from the device.</param>
<param name="numBytesRead">The number of bytes actually read.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.Read(System.String@,System.UInt32,System.UInt32@)">
<summary>
Read data from an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Read in FTD2XX.DLL</returns>
<param name="dataBuffer">A string containing the data read</param>
<param name="numBytesToRead">The number of bytes requested from the device.</param>
<param name="numBytesRead">The number of bytes actually read.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.Write(System.Byte[],System.Int32,System.UInt32@)">
<summary>
Write data to an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Write in FTD2XX.DLL</returns>
<param name="dataBuffer">An array of bytes which contains the data to be written to the device.</param>
<param name="numBytesToWrite">The number of bytes to be written to the device.</param>
<param name="numBytesWritten">The number of bytes actually written to the device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.Write(System.Byte[],System.UInt32,System.UInt32@)">
<summary>
Write data to an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Write in FTD2XX.DLL</returns>
<param name="dataBuffer">An array of bytes which contains the data to be written to the device.</param>
<param name="numBytesToWrite">The number of bytes to be written to the device.</param>
<param name="numBytesWritten">The number of bytes actually written to the device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.Write(System.String,System.Int32,System.UInt32@)">
<summary>
Write data to an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Write in FTD2XX.DLL</returns>
<param name="dataBuffer">A string which contains the data to be written to the device.</param>
<param name="numBytesToWrite">The number of bytes to be written to the device.</param>
<param name="numBytesWritten">The number of bytes actually written to the device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.Write(System.String,System.UInt32,System.UInt32@)">
<summary>
Write data to an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_Write in FTD2XX.DLL</returns>
<param name="dataBuffer">A string which contains the data to be written to the device.</param>
<param name="numBytesToWrite">The number of bytes to be written to the device.</param>
<param name="numBytesWritten">The number of bytes actually written to the device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.ResetDevice">
<summary>
Reset an open FTDI device.
</summary>
<returns>FT_STATUS value from FT_ResetDevice in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.Purge(System.UInt32)">
<summary>
Purge data from the devices transmit and/or receive buffers.
</summary>
<returns>FT_STATUS value from FT_Purge in FTD2XX.DLL</returns>
<param name="purgemask">Specifies which buffer(s) to be purged. Valid values are any combination of the following flags: FT_PURGE_RX, FT_PURGE_TX</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetEventNotification(System.UInt32,System.Threading.EventWaitHandle)">
<summary>
Register for event notification.
</summary>
<returns>FT_STATUS value from FT_SetEventNotification in FTD2XX.DLL</returns>
<remarks>After setting event notification, the event can be caught by executing the WaitOne() method of the EventWaitHandle. If multiple event types are being monitored, the event that fired can be determined from the GetEventType method.</remarks>
<param name="eventmask">The type of events to signal. Can be any combination of the following: FT_EVENT_RXCHAR, FT_EVENT_MODEM_STATUS, FT_EVENT_LINE_STATUS</param>
<param name="eventhandle">Handle to the event that will receive the notification</param>
</member>
<member name="M:FTD2XX_NET.FTDI.StopInTask">
<summary>
Stops the driver issuing USB in requests.
</summary>
<returns>FT_STATUS value from FT_StopInTask in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.RestartInTask">
<summary>
Resumes the driver issuing USB in requests.
</summary>
<returns>FT_STATUS value from FT_RestartInTask in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.ResetPort">
<summary>
Resets the device port.
</summary>
<returns>FT_STATUS value from FT_ResetPort in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.CyclePort">
<summary>
Causes the device to be re-enumerated on the USB bus. This is equivalent to unplugging and replugging the device.
Also calls FT_Close if FT_CyclePort is successful, so no need to call this separately in the application.
</summary>
<returns>FT_STATUS value from FT_CyclePort in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.Rescan">
<summary>
Causes the system to check for USB hardware changes. This is equivalent to clicking on the "Scan for hardware changes" button in the Device Manager.
</summary>
<returns>FT_STATUS value from FT_Rescan in FTD2XX.DLL</returns>
</member>
<member name="M:FTD2XX_NET.FTDI.Reload(System.UInt16,System.UInt16)">
<summary>
Forces a reload of the driver for devices with a specific VID and PID combination.
</summary>
<returns>FT_STATUS value from FT_Reload in FTD2XX.DLL</returns>
<remarks>If the VID and PID parameters are 0, the drivers for USB root hubs will be reloaded, causing all USB devices connected to reload their drivers</remarks>
<param name="VendorID">Vendor ID of the devices to have the driver reloaded</param>
<param name="ProductID">Product ID of the devices to have the driver reloaded</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetBitMode(System.Byte,System.Byte)">
<summary>
Puts the device in a mode other than the default UART or FIFO mode.
</summary>
<returns>FT_STATUS value from FT_SetBitMode in FTD2XX.DLL</returns>
<param name="Mask">Sets up which bits are inputs and which are outputs. A bit value of 0 sets the corresponding pin to an input, a bit value of 1 sets the corresponding pin to an output.
In the case of CBUS Bit Bang, the upper nibble of this value controls which pins are inputs and outputs, while the lower nibble controls which of the outputs are high and low.</param>
<param name="BitMode"> For FT232H devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG, FT_BIT_MODE_MPSSE, FT_BIT_MODE_SYNC_BITBANG, FT_BIT_MODE_CBUS_BITBANG, FT_BIT_MODE_MCU_HOST, FT_BIT_MODE_FAST_SERIAL, FT_BIT_MODE_SYNC_FIFO.
For FT2232H devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG, FT_BIT_MODE_MPSSE, FT_BIT_MODE_SYNC_BITBANG, FT_BIT_MODE_MCU_HOST, FT_BIT_MODE_FAST_SERIAL, FT_BIT_MODE_SYNC_FIFO.
For FT4232H devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG, FT_BIT_MODE_MPSSE, FT_BIT_MODE_SYNC_BITBANG.
For FT232R devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG, FT_BIT_MODE_SYNC_BITBANG, FT_BIT_MODE_CBUS_BITBANG.
For FT245R devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG, FT_BIT_MODE_SYNC_BITBANG.
For FT2232 devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG, FT_BIT_MODE_MPSSE, FT_BIT_MODE_SYNC_BITBANG, FT_BIT_MODE_MCU_HOST, FT_BIT_MODE_FAST_SERIAL.
For FT232B and FT245B devices, valid values are FT_BIT_MODE_RESET, FT_BIT_MODE_ASYNC_BITBANG.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not support the requested bit mode.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.GetPinStates(System.Byte@)">
<summary>
Gets the instantaneous state of the device IO pins.
</summary>
<returns>FT_STATUS value from FT_GetBitMode in FTD2XX.DLL</returns>
<param name="BitMode">A bitmap value containing the instantaneous state of the device IO pins</param>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadEEPROMLocation(System.UInt32,System.UInt16@)">
<summary>
Reads an individual word value from a specified location in the device's EEPROM.
</summary>
<returns>FT_STATUS value from FT_ReadEE in FTD2XX.DLL</returns>
<param name="Address">The EEPROM location to read data from</param>
<param name="EEValue">The WORD value read from the EEPROM location specified in the Address paramter</param>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteEEPROMLocation(System.UInt32,System.UInt16)">
<summary>
Writes an individual word value to a specified location in the device's EEPROM.
</summary>
<returns>FT_STATUS value from FT_WriteEE in FTD2XX.DLL</returns>
<param name="Address">The EEPROM location to read data from</param>
<param name="EEValue">The WORD value to write to the EEPROM location specified by the Address parameter</param>
</member>
<member name="M:FTD2XX_NET.FTDI.EraseEEPROM">
<summary>
Erases the device EEPROM.
</summary>
<returns>FT_STATUS value from FT_EraseEE in FTD2XX.DLL</returns>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when attempting to erase the EEPROM of a device with an internal EEPROM such as an FT232R or FT245R.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadFT232BEEPROM(FTD2XX_NET.FTDI.FT232B_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an FT232B or FT245B device.
</summary>
<returns>FT_STATUS value from FT_EE_Read in FTD2XX DLL</returns>
<param name="ee232b">An FT232B_EEPROM_STRUCTURE which contains only the relevant information for an FT232B and FT245B device.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadFT2232EEPROM(FTD2XX_NET.FTDI.FT2232_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an FT2232 device.
</summary>
<returns>FT_STATUS value from FT_EE_Read in FTD2XX DLL</returns>
<param name="ee2232">An FT2232_EEPROM_STRUCTURE which contains only the relevant information for an FT2232 device.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadFT232REEPROM(FTD2XX_NET.FTDI.FT232R_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an FT232R or FT245R device.
Calls FT_EE_Read in FTD2XX DLL
</summary>
<returns>An FT232R_EEPROM_STRUCTURE which contains only the relevant information for an FT232R and FT245R device.</returns>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadFT2232HEEPROM(FTD2XX_NET.FTDI.FT2232H_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an FT2232H device.
</summary>
<returns>FT_STATUS value from FT_EE_Read in FTD2XX DLL</returns>
<param name="ee2232h">An FT2232H_EEPROM_STRUCTURE which contains only the relevant information for an FT2232H device.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadFT4232HEEPROM(FTD2XX_NET.FTDI.FT4232H_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an FT4232H device.
</summary>
<returns>FT_STATUS value from FT_EE_Read in FTD2XX DLL</returns>
<param name="ee4232h">An FT4232H_EEPROM_STRUCTURE which contains only the relevant information for an FT4232H device.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadFT232HEEPROM(FTD2XX_NET.FTDI.FT232H_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an FT232H device.
</summary>
<returns>FT_STATUS value from FT_EE_Read in FTD2XX DLL</returns>
<param name="ee232h">An FT232H_EEPROM_STRUCTURE which contains only the relevant information for an FT232H device.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.ReadXSeriesEEPROM(FTD2XX_NET.FTDI.FT_XSERIES_EEPROM_STRUCTURE)">
<summary>
Reads the EEPROM contents of an X-Series device.
</summary>
<returns>FT_STATUS value from FT_EEPROM_Read in FTD2XX DLL</returns>
<param name="eeX">An FT_XSERIES_EEPROM_STRUCTURE which contains only the relevant information for an X-Series device.</param>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteFT232BEEPROM(FTD2XX_NET.FTDI.FT232B_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an FT232B or FT245B device.
</summary>
<returns>FT_STATUS value from FT_EE_Program in FTD2XX DLL</returns>
<param name="ee232b">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteFT2232EEPROM(FTD2XX_NET.FTDI.FT2232_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an FT2232 device.
Calls FT_EE_Program in FTD2XX DLL
</summary>
<returns>FT_STATUS value from FT_EE_Program in FTD2XX DLL</returns>
<param name="ee2232">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteFT232REEPROM(FTD2XX_NET.FTDI.FT232R_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an FT232R or FT245R device.
Calls FT_EE_Program in FTD2XX DLL
</summary>
<returns>FT_STATUS value from FT_EE_Program in FTD2XX DLL</returns>
<param name="ee232r">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteFT2232HEEPROM(FTD2XX_NET.FTDI.FT2232H_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an FT2232H device.
Calls FT_EE_Program in FTD2XX DLL
</summary>
<returns>FT_STATUS value from FT_EE_Program in FTD2XX DLL</returns>
<param name="ee2232h">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteFT4232HEEPROM(FTD2XX_NET.FTDI.FT4232H_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an FT4232H device.
Calls FT_EE_Program in FTD2XX DLL
</summary>
<returns>FT_STATUS value from FT_EE_Program in FTD2XX DLL</returns>
<param name="ee4232h">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteFT232HEEPROM(FTD2XX_NET.FTDI.FT232H_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an FT232H device.
Calls FT_EE_Program in FTD2XX DLL
</summary>
<returns>FT_STATUS value from FT_EE_Program in FTD2XX DLL</returns>
<param name="ee232h">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.WriteXSeriesEEPROM(FTD2XX_NET.FTDI.FT_XSERIES_EEPROM_STRUCTURE)">
<summary>
Writes the specified values to the EEPROM of an X-Series device.
Calls FT_EEPROM_Program in FTD2XX DLL
</summary>
<returns>FT_STATUS value from FT_EEPROM_Program in FTD2XX DLL</returns>
<param name="eeX">The EEPROM settings to be written to the device</param>
<remarks>If the strings are too long, they will be truncated to their maximum permitted lengths</remarks>
<exception cref="T:FTD2XX_NET.FTDI.FT_EXCEPTION">Thrown when the current device does not match the type required by this method.</exception>
</member>
<member name="M:FTD2XX_NET.FTDI.EEReadUserArea(System.Byte[],System.UInt32@)">
<summary>
Reads data from the user area of the device EEPROM.
</summary>
<returns>FT_STATUS from FT_UARead in FTD2XX.DLL</returns>
<param name="UserAreaDataBuffer">An array of bytes which will be populated with the data read from the device EEPROM user area.</param>
<param name="numBytesRead">The number of bytes actually read from the EEPROM user area.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.EEWriteUserArea(System.Byte[])">
<summary>
Writes data to the user area of the device EEPROM.
</summary>
<returns>FT_STATUS value from FT_UAWrite in FTD2XX.DLL</returns>
<param name="UserAreaDataBuffer">An array of bytes which will be written to the device EEPROM user area.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetDeviceType(FTD2XX_NET.FTDI.FT_DEVICE@)">
<summary>
Gets the chip type of the current device.
</summary>
<returns>FT_STATUS value from FT_GetDeviceInfo in FTD2XX.DLL</returns>
<param name="DeviceType">The FTDI chip type of the current device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetDeviceID(System.UInt32@)">
<summary>
Gets the Vendor ID and Product ID of the current device.
</summary>
<returns>FT_STATUS value from FT_GetDeviceInfo in FTD2XX.DLL</returns>
<param name="DeviceID">The device ID (Vendor ID and Product ID) of the current device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetDescription(System.String@)">
<summary>
Gets the description of the current device.
</summary>
<returns>FT_STATUS value from FT_GetDeviceInfo in FTD2XX.DLL</returns>
<param name="Description">The description of the current device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetSerialNumber(System.String@)">
<summary>
Gets the serial number of the current device.
</summary>
<returns>FT_STATUS value from FT_GetDeviceInfo in FTD2XX.DLL</returns>
<param name="SerialNumber">The serial number of the current device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetRxBytesAvailable(System.UInt32@)">
<summary>
Gets the number of bytes available in the receive buffer.
</summary>
<returns>FT_STATUS value from FT_GetQueueStatus in FTD2XX.DLL</returns>
<param name="RxQueue">The number of bytes available to be read.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetTxBytesWaiting(System.UInt32@)">
<summary>
Gets the number of bytes waiting in the transmit buffer.
</summary>
<returns>FT_STATUS value from FT_GetStatus in FTD2XX.DLL</returns>
<param name="TxQueue">The number of bytes waiting to be sent.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetEventType(System.UInt32@)">
<summary>
Gets the event type after an event has fired. Can be used to distinguish which event has been triggered when waiting on multiple event types.
</summary>
<returns>FT_STATUS value from FT_GetStatus in FTD2XX.DLL</returns>
<param name="EventType">The type of event that has occurred.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetModemStatus(System.Byte@)">
<summary>
Gets the current modem status.
</summary>
<returns>FT_STATUS value from FT_GetModemStatus in FTD2XX.DLL</returns>
<param name="ModemStatus">A bit map representaion of the current modem status.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetLineStatus(System.Byte@)">
<summary>
Gets the current line status.
</summary>
<returns>FT_STATUS value from FT_GetModemStatus in FTD2XX.DLL</returns>
<param name="LineStatus">A bit map representaion of the current line status.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetBaudRate(System.UInt32)">
<summary>
Sets the current Baud rate.
</summary>
<returns>FT_STATUS value from FT_SetBaudRate in FTD2XX.DLL</returns>
<param name="BaudRate">The desired Baud rate for the device.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetDataCharacteristics(System.Byte,System.Byte,System.Byte)">
<summary>
Sets the data bits, stop bits and parity for the device.
</summary>
<returns>FT_STATUS value from FT_SetDataCharacteristics in FTD2XX.DLL</returns>
<param name="DataBits">The number of data bits for UART data. Valid values are FT_DATA_BITS.FT_DATA_7 or FT_DATA_BITS.FT_BITS_8</param>
<param name="StopBits">The number of stop bits for UART data. Valid values are FT_STOP_BITS.FT_STOP_BITS_1 or FT_STOP_BITS.FT_STOP_BITS_2</param>
<param name="Parity">The parity of the UART data. Valid values are FT_PARITY.FT_PARITY_NONE, FT_PARITY.FT_PARITY_ODD, FT_PARITY.FT_PARITY_EVEN, FT_PARITY.FT_PARITY_MARK or FT_PARITY.FT_PARITY_SPACE</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetFlowControl(System.UInt16,System.Byte,System.Byte)">
<summary>
Sets the flow control type.
</summary>
<returns>FT_STATUS value from FT_SetFlowControl in FTD2XX.DLL</returns>
<param name="FlowControl">The type of flow control for the UART. Valid values are FT_FLOW_CONTROL.FT_FLOW_NONE, FT_FLOW_CONTROL.FT_FLOW_RTS_CTS, FT_FLOW_CONTROL.FT_FLOW_DTR_DSR or FT_FLOW_CONTROL.FT_FLOW_XON_XOFF</param>
<param name="Xon">The Xon character for Xon/Xoff flow control. Ignored if not using Xon/XOff flow control.</param>
<param name="Xoff">The Xoff character for Xon/Xoff flow control. Ignored if not using Xon/XOff flow control.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetRTS(System.Boolean)">
<summary>
Asserts or de-asserts the Request To Send (RTS) line.
</summary>
<returns>FT_STATUS value from FT_SetRts or FT_ClrRts in FTD2XX.DLL</returns>
<param name="Enable">If true, asserts RTS. If false, de-asserts RTS</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetDTR(System.Boolean)">
<summary>
Asserts or de-asserts the Data Terminal Ready (DTR) line.
</summary>
<returns>FT_STATUS value from FT_SetDtr or FT_ClrDtr in FTD2XX.DLL</returns>
<param name="Enable">If true, asserts DTR. If false, de-asserts DTR.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetTimeouts(System.UInt32,System.UInt32)">
<summary>
Sets the read and write timeout values.
</summary>
<returns>FT_STATUS value from FT_SetTimeouts in FTD2XX.DLL</returns>
<param name="ReadTimeout">Read timeout value in ms. A value of 0 indicates an infinite timeout.</param>
<param name="WriteTimeout">Write timeout value in ms. A value of 0 indicates an infinite timeout.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetBreak(System.Boolean)">
<summary>
Sets or clears the break state.
</summary>
<returns>FT_STATUS value from FT_SetBreakOn or FT_SetBreakOff in FTD2XX.DLL</returns>
<param name="Enable">If true, sets break on. If false, sets break off.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetResetPipeRetryCount(System.UInt32)">
<summary>
Gets or sets the reset pipe retry count. Default value is 50.
</summary>
<returns>FT_STATUS vlaue from FT_SetResetPipeRetryCount in FTD2XX.DLL</returns>
<param name="ResetPipeRetryCount">The reset pipe retry count.
Electrically noisy environments may benefit from a larger value.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetDriverVersion(System.UInt32@)">
<summary>
Gets the current FTDIBUS.SYS driver version number.
</summary>
<returns>FT_STATUS value from FT_GetDriverVersion in FTD2XX.DLL</returns>
<param name="DriverVersion">The current driver version number.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetLibraryVersion(System.UInt32@)">
<summary>
Gets the current FTD2XX.DLL driver version number.
</summary>
<returns>FT_STATUS value from FT_GetLibraryVersion in FTD2XX.DLL</returns>
<param name="LibraryVersion">The current library version.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetDeadmanTimeout(System.UInt32)">
<summary>
Sets the USB deadman timeout value. Default is 5000ms.
</summary>
<returns>FT_STATUS value from FT_SetDeadmanTimeout in FTD2XX.DLL</returns>
<param name="DeadmanTimeout">The deadman timeout value in ms. Default is 5000ms.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetLatency(System.Byte)">
<summary>
Sets the value of the latency timer. Default value is 16ms.
</summary>
<returns>FT_STATUS value from FT_SetLatencyTimer in FTD2XX.DLL</returns>
<param name="Latency">The latency timer value in ms.
Valid values are 2ms - 255ms for FT232BM, FT245BM and FT2232 devices.
Valid values are 0ms - 255ms for other devices.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetLatency(System.Byte@)">
<summary>
Gets the value of the latency timer. Default value is 16ms.
</summary>
<returns>FT_STATUS value from FT_GetLatencyTimer in FTD2XX.DLL</returns>
<param name="Latency">The latency timer value in ms.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.InTransferSize(System.UInt32)">
<summary>
Sets the USB IN and OUT transfer sizes.
</summary>
<returns>FT_STATUS value from FT_SetUSBParameters in FTD2XX.DLL</returns>
<param name="InTransferSize">The USB IN transfer size in bytes.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.SetCharacters(System.Byte,System.Boolean,System.Byte,System.Boolean)">
<summary>
Sets an event character, an error character and enables or disables them.
</summary>
<returns>FT_STATUS value from FT_SetChars in FTD2XX.DLL</returns>
<param name="EventChar">A character that will be tigger an IN to the host when this character is received.</param>
<param name="EventCharEnable">Determines if the EventChar is enabled or disabled.</param>
<param name="ErrorChar">A character that will be inserted into the data stream to indicate that an error has occurred.</param>
<param name="ErrorCharEnable">Determines if the ErrorChar is enabled or disabled.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.EEUserAreaSize(System.UInt32@)">
<summary>
Gets the size of the EEPROM user area.
</summary>
<returns>FT_STATUS value from FT_EE_UASize in FTD2XX.DLL</returns>
<param name="UASize">The EEPROM user area size in bytes.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.GetCOMPort(System.String@)">
<summary>
Gets the corresponding COM port number for the current device. If no COM port is exposed, an empty string is returned.
</summary>
<returns>FT_STATUS value from FT_GetComPortNumber in FTD2XX.DLL</returns>
<param name="ComPortName">The COM port name corresponding to the current device. If no COM port is installed, an empty string is passed back.</param>
</member>
<member name="M:FTD2XX_NET.FTDI.ErrorHandler(FTD2XX_NET.FTDI.FT_STATUS,FTD2XX_NET.FTDI.FT_ERROR)">
<summary>
Method to check ftStatus and ftErrorCondition values for error conditions and throw exceptions accordingly.
</summary>
</member>
<member name="P:FTD2XX_NET.FTDI.IsOpen">
<summary>
Gets the open status of the device.
</summary>
</member>
<member name="P:FTD2XX_NET.FTDI.InterfaceIdentifier">
<summary>
Gets the interface identifier.
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_STATUS">
<summary>
Status values for FTDI devices.
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_OK">
<summary>
Status OK
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_INVALID_HANDLE">
<summary>
The device handle is invalid
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_DEVICE_NOT_FOUND">
<summary>
Device not found
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_DEVICE_NOT_OPENED">
<summary>
Device is not open
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_IO_ERROR">
<summary>
IO error
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_INSUFFICIENT_RESOURCES">
<summary>
Insufficient resources
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_INVALID_PARAMETER">
<summary>
A parameter was invalid
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_INVALID_BAUD_RATE">
<summary>
The requested baud rate is invalid
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_DEVICE_NOT_OPENED_FOR_ERASE">
<summary>
Device not opened for erase
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_DEVICE_NOT_OPENED_FOR_WRITE">
<summary>
Device not poened for write
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_FAILED_TO_WRITE_DEVICE">
<summary>
Failed to write to device
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_EEPROM_READ_FAILED">
<summary>
Failed to read the device EEPROM
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_EEPROM_WRITE_FAILED">
<summary>
Failed to write the device EEPROM
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_EEPROM_ERASE_FAILED">
<summary>
Failed to erase the device EEPROM
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_EEPROM_NOT_PRESENT">
<summary>
An EEPROM is not fitted to the device
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_EEPROM_NOT_PROGRAMMED">
<summary>
Device EEPROM is blank
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_INVALID_ARGS">
<summary>
Invalid arguments
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STATUS.FT_OTHER_ERROR">
<summary>
An other error has occurred
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_ERROR">
<summary>
Error states not supported by FTD2XX DLL.
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_DATA_BITS">
<summary>
Permitted data bits for FTDI devices
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_DATA_BITS.FT_BITS_8">
<summary>
8 data bits
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_DATA_BITS.FT_BITS_7">
<summary>
7 data bits
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_STOP_BITS">
<summary>
Permitted stop bits for FTDI devices
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STOP_BITS.FT_STOP_BITS_1">
<summary>
1 stop bit
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_STOP_BITS.FT_STOP_BITS_2">
<summary>
2 stop bits
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_PARITY">
<summary>
Permitted parity values for FTDI devices
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PARITY.FT_PARITY_NONE">
<summary>
No parity
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PARITY.FT_PARITY_ODD">
<summary>
Odd parity
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PARITY.FT_PARITY_EVEN">
<summary>
Even parity
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PARITY.FT_PARITY_MARK">
<summary>
Mark parity
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PARITY.FT_PARITY_SPACE">
<summary>
Space parity
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_FLOW_CONTROL">
<summary>
Permitted flow control values for FTDI devices
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_FLOW_CONTROL.FT_FLOW_NONE">
<summary>
No flow control
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_FLOW_CONTROL.FT_FLOW_RTS_CTS">
<summary>
RTS/CTS flow control
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_FLOW_CONTROL.FT_FLOW_DTR_DSR">
<summary>
DTR/DSR flow control
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_FLOW_CONTROL.FT_FLOW_XON_XOFF">
<summary>
Xon/Xoff flow control
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_PURGE">
<summary>
Purge buffer constant definitions
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PURGE.FT_PURGE_RX">
<summary>
Purge Rx buffer
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_PURGE.FT_PURGE_TX">
<summary>
Purge Tx buffer
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_MODEM_STATUS">
<summary>
Modem status bit definitions
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_MODEM_STATUS.FT_CTS">
<summary>
Clear To Send (CTS) modem status
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_MODEM_STATUS.FT_DSR">
<summary>
Data Set Ready (DSR) modem status
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_MODEM_STATUS.FT_RI">
<summary>
Ring Indicator (RI) modem status
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_MODEM_STATUS.FT_DCD">
<summary>
Data Carrier Detect (DCD) modem status
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_LINE_STATUS">
<summary>
Line status bit definitions
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_LINE_STATUS.FT_OE">
<summary>
Overrun Error (OE) line status
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_LINE_STATUS.FT_PE">
<summary>
Parity Error (PE) line status
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_LINE_STATUS.FT_FE">
<summary>
Framing Error (FE) line status
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_LINE_STATUS.FT_BI">
<summary>
Break Interrupt (BI) line status
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_EVENTS">
<summary>
FTDI device event types that can be monitored
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_EVENTS.FT_EVENT_RXCHAR">
<summary>
Event on receive character
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_EVENTS.FT_EVENT_MODEM_STATUS">
<summary>
Event on modem status change
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_EVENTS.FT_EVENT_LINE_STATUS">
<summary>
Event on line status change
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_BIT_MODES">
<summary>
Permitted bit mode values for FTDI devices. For use with SetBitMode
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_RESET">
<summary>
Reset bit mode
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_ASYNC_BITBANG">
<summary>
Asynchronous bit-bang mode
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_MPSSE">
<summary>
MPSSE bit mode - only available on FT2232, FT2232H, FT4232H and FT232H
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_SYNC_BITBANG">
<summary>
Synchronous bit-bang mode
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_MCU_HOST">
<summary>
MCU host bus emulation mode - only available on FT2232, FT2232H, FT4232H and FT232H
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_FAST_SERIAL">
<summary>
Fast opto-isolated serial mode - only available on FT2232, FT2232H, FT4232H and FT232H
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_CBUS_BITBANG">
<summary>
CBUS bit-bang mode - only available on FT232R and FT232H
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_BIT_MODES.FT_BIT_MODE_SYNC_FIFO">
<summary>
Single channel synchronous 245 FIFO mode - only available on FT2232H channel A and FT232H
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS">
<summary>
Available functions for the FT232R CBUS pins. Controlled by FT232R EEPROM settings
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_TXDEN">
<summary>
FT232R CBUS EEPROM options - Tx Data Enable
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_PWRON">
<summary>
FT232R CBUS EEPROM options - Power On
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_RXLED">
<summary>
FT232R CBUS EEPROM options - Rx LED
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_TXLED">
<summary>
FT232R CBUS EEPROM options - Tx LED
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_TXRXLED">
<summary>
FT232R CBUS EEPROM options - Tx and Rx LED
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_SLEEP">
<summary>
FT232R CBUS EEPROM options - Sleep
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_CLK48">
<summary>
FT232R CBUS EEPROM options - 48MHz clock
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_CLK24">
<summary>
FT232R CBUS EEPROM options - 24MHz clock
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_CLK12">
<summary>
FT232R CBUS EEPROM options - 12MHz clock
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_CLK6">
<summary>
FT232R CBUS EEPROM options - 6MHz clock
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_IOMODE">
<summary>
FT232R CBUS EEPROM options - IO mode
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_BITBANG_WR">
<summary>
FT232R CBUS EEPROM options - Bit-bang write strobe
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_CBUS_OPTIONS.FT_CBUS_BITBANG_RD">
<summary>
FT232R CBUS EEPROM options - Bit-bang read strobe
</summary>
</member>
<member name="T:FTD2XX_NET.FTDI.FT_232H_CBUS_OPTIONS">
<summary>
Available functions for the FT232H CBUS pins. Controlled by FT232H EEPROM settings
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_232H_CBUS_OPTIONS.FT_CBUS_TRISTATE">
<summary>
FT232H CBUS EEPROM options - Tristate
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_232H_CBUS_OPTIONS.FT_CBUS_RXLED">
<summary>
FT232H CBUS EEPROM options - Rx LED
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_232H_CBUS_OPTIONS.FT_CBUS_TXLED">
<summary>
FT232H CBUS EEPROM options - Tx LED
</summary>
</member>
<member name="F:FTD2XX_NET.FTDI.FT_232H_CBUS_OPTIONS.FT_CBUS_TXRXLED">
<summary>
FT232H CBUS EEPROM options - Tx and Rx LED
</summary>