NiFpga_FifoFlowControl.cs 222 B

12345678910111213
  1. namespace NIFPGA
  2. {
  3. public enum NiFpga_FifoFlowControl:int
  4. {
  5. /// NiFpga_FifoFlowControl_Disabled -> 1
  6. Disabled = 1,
  7. /// NiFpga_FifoFlowControl_Enabled -> 2
  8. Enabled = 2,
  9. }
  10. }