diff --git a/examples/ad4858_DataCapture.m b/examples/ad4858_DataCapture.m index 48bb95b..2050d6a 100644 --- a/examples/ad4858_DataCapture.m +++ b/examples/ad4858_DataCapture.m @@ -1,9 +1,6 @@ %% Script for capturing and displaying a continuous set of samples from a %% connected AD4858 board -%% Trigger setup needs to be performed before this example script can be run -%% Refer to the Limitations section in the documentation for details - % Instantiate the system object rx = adi.AD4858.Rx; % Specify uri @@ -12,11 +9,6 @@ % performance, generally rx.EnabledChannels = [1 2 3 4 5 6 7 8]; -% The parameter below specifies the number of frames or buffers to capture. -% Refer to the Streaming section in the documentation if discontinuities -% are observed in the acquired data. -rx.FrameCount = 1; - % Capture data data = rx();