use super::{Error, Channel}; /// Provide an interface to measure RF input power in dB. pub trait PowerMeasurementInterface { fn sample_converter(&mut self, channel: Channel) -> Result; /// Measure the power of an inpu channel in dB. /// /// Note: This function assumes the input channel is connected to an AD8363 output. /// /// Args: /// * `channel` - The pounder channel to measure the power of. fn measure_power(&mut self, channel: Channel) -> Result { let analog_measurement = self.sample_converter(channel)?; // The AD8363 with VSET connected to VOUT provides an output voltage of 51.7mV / dB at // 100MHz. Ok(analog_measurement / 0.0517) } }