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, divide an external signal by 100 (Input =1000 Hz, Output = 10Hz)
Question
Matt80
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, divide an external signal by 100 (Input =1000 Hz, Output = 10Hz)
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?
1 answer to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now