Home
last modified time | relevance | path

Searched refs:dsm_param (Results 1 – 4 of 4) sorted by relevance

/external/adhd/sound_card_init/amp/src/max98373d/
Dmod.rs8 mod dsm_param; module
20 use dsm_param::*;
36 if !Path::new(&self.setting.dsm_param).exists() { in boot_time_calibration()
143 let mut dsm_param = DSMParam::new( in set_volume() localVariable
149 dsm_param.set_volume_mode(mode); in set_volume()
153 .save(dsm_param.into()) in set_volume()
160 let mut dsm_param = DSMParam::new( in apply_calibration_value() localVariable
166 dsm_param.set_rdc(ch, calib[ch].rdc); in apply_calibration_value()
167 dsm_param.set_ambient_temp(ch, Self::celsius_to_dsm_unit(calib[ch].temp)); in apply_calibration_value()
171 .save(dsm_param.into()) in apply_calibration_value()
[all …]
Dsettings.rs23 pub dsm_param: String, field
/external/adhd/sound_card_init/amp/src/max98390d/
Dsettings.rs34 pub dsm_param: String, field
Dmod.rs44 if !Path::new(&self.setting.dsm_param).exists() { in boot_time_calibration()