Home
last modified time | relevance | path

Searched refs:freq (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DLSM6DSO_IMU.cs984 var freq = DataRateToFrequency(accelerometerFifoBatchingDataRateSelection.Value); in UpdateAccelerationSampleFrequency()
985 accelerometerFeederThread.Frequency = freq; in UpdateAccelerationSampleFrequency()
1003 var freq = DataRateToFrequency(gyroscopeFifoBatchingDataRateSelection.Value); in UpdateAngularRateSampleFrequency()
1004 gyroFeederThread.Frequency = freq; in UpdateAngularRateSampleFrequency()
DMAX86171.cs779 var freq = CalculateCurrentFrequency(); in TryFeedDefaultSample()
780 this.Log(LogLevel.Info, "Starting the default sample feeding at {0}Hz", freq); in TryFeedDefaultSample()
792 …feederThread = machine.ObtainManagedThread(feedSample, freq, "default_sample_afe", this, stopCondi… in TryFeedDefaultSample()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sound/
DNRF52840_I2S.cs281 private uint GetClosestValue(uint freq, uint[] possibleVals) in GetClosestValue() argument
283 var closest = possibleVals.OrderBy(x => Math.Abs((long) x - freq)).First(); in GetClosestValue()