init_analyzer(rx);
}
- SetDisplayDetectorMode(rx->id, 0, display_detector_mode);
- SetDisplayAverageMode(rx->id, 0, display_average_mode);
+ //
+ // This cannot be changed for the PS feedback receiver,
+ // use peak mode
+ //
+ SetDisplayDetectorMode(rx->id, 0, DETECTOR_MODE_PEAK);
+ SetDisplayAverageMode(rx->id, 0, AVERAGE_MODE_NONE);
return rx;
}
span_max_freq, //frequency at last pixel value
max_w //max samples to hold in input ring buffers
);
+ //
+ // This cannot be changed for the TX panel,
+ // use peak mode
+ //
+ SetDisplayDetectorMode(tx->id, 0, DETECTOR_MODE_PEAK);
+ SetDisplayAverageMode(tx->id, 0, AVERAGE_MODE_NONE);
+
}