Jump to content
  • 0

downsampling an external signal


Matt80

Question


in the digilent shop, the 1808X is recommended as successor of the DT9836. With the DT9836 it was possible to use CounterTimerSubsystems for downsampling an external signal

for example:
Device device = DeviceMgr.Get().GetDevice(DEVICENAME);
CounterTimerSubsystem subsystem = device.CounterTimerSubsystem(0);
subsystem.Clock.ExtClockDivider = 100; // divider
subsystem.Clock.Source = ClockSource.External;
subsystem.DataFlow = DataFlow.Continuous;
subsystem.CounterMode = CounterMode.RateGenerator;
subsystem.GateType = GateType.None;
subsystem.Config();

subsystem.Start();
...
subsystem.Stop();


what would be the way to do it with the USB-1808X?

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...