ViewAViewModel.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. using Automation.BDaq;
  2. using CommonUtils.内部存储;
  3. using Prism.Commands;
  4. using Prism.Mvvm;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Net.Sockets;
  9. using System.Text;
  10. using System.Threading;
  11. using System.Threading.Tasks;
  12. namespace CustomModule.ViewModels
  13. {
  14. public class ViewAViewModel : CommonUtils.ViewModelBase.BaseViewModel
  15. {
  16. private string _message;
  17. public string Message
  18. {
  19. get { return _message; }
  20. set { SetProperty(ref _message, value); }
  21. }
  22. public ViewAViewModel()
  23. {
  24. Message = "View A from your Prism Module";
  25. }
  26. public void OpenStartData()
  27. {
  28. try
  29. {
  30. AsynchronousOneBufferedAI.RunTest();
  31. }
  32. catch (Exception ex)
  33. {
  34. isErr = true;
  35. }
  36. }
  37. }
  38. public class AsynchronousOneBufferedAI
  39. {
  40. public static bool isEnd = false;
  41. public static WaveformAiCtrl waveformAiCtrl = new WaveformAiCtrl();
  42. public static ErrorCode errorCode = ErrorCode.Success;
  43. // Step 1: Create a 'WaveformAiCtrl' for Streaming AI function.
  44. public static void Init()
  45. {
  46. waveformAiCtrl.Stopped += new EventHandler<BfdAiEventArgs>(waveformAiCtrl_Stopped);
  47. //-----------------------------------------------------------------------------------
  48. // Configure the following parameters before running the demo
  49. //-----------------------------------------------------------------------------------
  50. string deviceDescription = "PCI-1711L,BID#0";
  51. string profilePath = "../../../profile/PCI-1711.xml";
  52. int startChannel = 0;
  53. int channelCount = 1;
  54. int sectionLength = 300;
  55. int sectionCount = 1;
  56. double convertClkRate = 100;
  57. try
  58. {
  59. // Step 3: Select a device by device number or device description and specify the access mode.
  60. // in this example we use ModeWrite mode so that we can fully control the device, including configuring, sampling, etc.
  61. waveformAiCtrl.SelectedDevice = new DeviceInformation(deviceDescription);
  62. errorCode = waveformAiCtrl.LoadProfile(profilePath);//Loads a profile to initialize the device.
  63. if (BioFailed(errorCode))
  64. {
  65. throw new Exception();
  66. }
  67. // Step 4: Set necessary parameters.
  68. Conversion conversion = waveformAiCtrl.Conversion;
  69. conversion.ChannelStart = startChannel;
  70. conversion.ChannelCount = channelCount;
  71. conversion.ClockRate = convertClkRate;
  72. Record record = waveformAiCtrl.Record;
  73. record.SectionCount = sectionCount;//The sectionCount is nonzero value, which means 'One Buffered' mode.
  74. record.SectionLength = sectionLength;
  75. // Step 5: prepare the buffered AI.
  76. errorCode = waveformAiCtrl.Prepare();
  77. if (BioFailed(errorCode))
  78. {
  79. throw new Exception();
  80. }
  81. // Step 6: start Asynchronous Buffered AI, 'Asynchronous' means the method returns immediately
  82. // after the acquisition has been started. The 'bufferedAiCtrl_Stopped' method will be called
  83. // after the acquisition is completed.
  84. }
  85. catch
  86. {
  87. }
  88. }
  89. // Step 2: Set the notification event Handler by which we can known the state of operation effectively.
  90. public static void RunTest()
  91. {
  92. try
  93. {
  94. errorCode = waveformAiCtrl.Start();
  95. if (BioFailed(errorCode))
  96. {
  97. throw new Exception();
  98. }
  99. }
  100. catch (Exception e)
  101. {
  102. // Something is wrong
  103. string errStr = BioFailed(errorCode) ? " Some error occurred. And the last error code is " + errorCode.ToString()
  104. : e.Message;
  105. Console.WriteLine(errStr);
  106. }
  107. }
  108. // process the acquired data
  109. static void waveformAiCtrl_Stopped(object sender, BfdAiEventArgs e)
  110. {
  111. try
  112. {
  113. Console.Write(" Acquisition has completed, sample count is " + e.Count.ToString() + ".\n");
  114. WaveformAiCtrl waveformAiCtrl = (WaveformAiCtrl)sender;
  115. Int32 channelCountMax = waveformAiCtrl.Features.ChannelCountMax;
  116. Int32 startChan = waveformAiCtrl.Conversion.ChannelStart;
  117. Int32 channelCount = waveformAiCtrl.Conversion.ChannelCount;
  118. Int32 sectionLength = waveformAiCtrl.Record.SectionLength;
  119. Int32 bufSize = sectionLength * channelCount;
  120. Int32 getDataCount = 0, returnedCount = 0;
  121. Int32 remainingCount = e.Count;
  122. // e.Count notifys that how many samples had been gathered in the 'Stopped' event.
  123. Double[] allChanData = new Double[bufSize];
  124. do
  125. {
  126. getDataCount = Math.Min(bufSize, remainingCount);
  127. waveformAiCtrl.GetData(getDataCount, allChanData, 0, out returnedCount);
  128. remainingCount -= returnedCount;
  129. } while (remainingCount > 0);
  130. InternalStorage.Buffs = allChanData;
  131. InternalStorage.ischange = true;
  132. isEnd = false;
  133. Console.WriteLine(" Show each channel's new data:");
  134. for (int i = 0; i < channelCount; ++i)
  135. {
  136. Console.WriteLine(" Channel {0}: {1,13:f8}", (i % channelCount + startChan) % channelCountMax, allChanData[i]);
  137. }
  138. }
  139. catch
  140. {
  141. isEnd = false;
  142. }
  143. }
  144. static bool BioFailed(ErrorCode err)
  145. {
  146. return err < ErrorCode.Success && err >= ErrorCode.ErrorHandleNotValid;
  147. }
  148. }
  149. }