Hello,
I used the following configurtion:
config.channel[0].rx.enabled = true;
config.channel[0].rx.gain[eGainTypes::LNA] = 30;
config.channel[0].rx.centerFrequency = 530e6;
config.channel[0].rx.sampleRate = 10e6;
config.channel[0].rx.oversample = 2;
config.channel[0].rx.lpf = 12e6
config.channel[0].rx.path = 3;
Status = device->Configure(config, 0);
//Status = OpStatus::Success
Then I tried to read back the configuration:
double BandWidth= device->GetLowPassFilter(0, TRXDir::Rx, 0));
uint32_t Antenna = device->GetAntenna(0, TRXDir::Rx, 0);
//BandWidth = 0
//Antenna = 1
Can you please explain why I got wrong values for BandWidth, Antenna ?
Thank you,
Zvi