Hi,
is it possible to choose a sampling rate different from default ones?
I tried in defaultConfigSettings :
.clockDivider = 4,
.acquisitionCycles = 16,
.oversampleRate = 1,
.sampleRate = 352800,
.sampleRateDivider = 8,
to get a frequency of 41000 Hz, but the sampling rate came up to be 48 kHz.
EDIT: I chose the following parameters to get 32000 Hz, but when I import the file in matlab, frequency appears to be 41000 Hz.
.clockDivider = 4,
.acquisitionCycles = 16,
.oversampleRate = 1,
.sampleRate = 256000,
.sampleRateDivider = 8,
Is final sampling frequency
sampleRate/sampleRateDivider or is there another parameter that affect that value?
Thanks in advance!