/Zephyr-latest/drivers/sensor/bosch/bmc150_magn/ |
D | Kconfig | 22 Specify the default preset (x/y oversampling, z oversampling, sampling 45 bool "Dynamic XY oversampling" 47 Enable alteration of XY oversampling at runtime. 50 bool "Dynamic Z oversampling" 52 Enable alteration of Z oversampling at runtime.
|
/Zephyr-latest/drivers/sensor/bosch/bmm150/ |
D | Kconfig | 19 Specify the default preset (x/y oversampling, z oversampling, sampling 73 bool "Dynamic XY oversampling" 75 Enable alteration of XY oversampling at runtime. 78 bool "Dynamic Z oversampling" 80 Enable alteration of Z oversampling at runtime.
|
/Zephyr-latest/drivers/sensor/bosch/bme680/ |
D | Kconfig | 20 prompt "BME680 temperature oversampling" 23 Select temperature oversampling for the BME680 sensor. Higher values 38 prompt "BME680 pressure oversampling" 41 Select pressure oversampling for the BME680 sensor. Higher values 56 prompt "BME680 humidity oversampling" 59 Select humidity oversampling for the BME680 sensor. Higher values
|
/Zephyr-latest/drivers/sensor/bosch/bme280/ |
D | Kconfig | 33 prompt "BME280 temperature oversampling" 36 Select temperature oversampling for the BME280 sensor. Higher values 51 prompt "BME280 pressure oversampling" 54 Select pressure oversampling for the BME280 sensor. Higher values 69 prompt "BME280 humidity oversampling" 72 Select humidity oversampling for the BME280 sensor. Higher values
|
/Zephyr-latest/drivers/sensor/infineon/dps310/ |
D | Kconfig | 19 prompt "DPS310 temperature oversampling" 22 Select temperature oversampling for the DPS310 sensor. Higher values 43 prompt "DPS310 pressure oversampling" 46 Select pressure oversampling for the DPS310 sensor. Higher values
|
/Zephyr-latest/samples/sensor/bmi270/src/ |
D | main.c | 16 struct sensor_value full_scale, sampling_freq, oversampling; in main() local 32 oversampling.val1 = 1; /* Normal mode */ in main() 33 oversampling.val2 = 0; in main() 38 &oversampling); in main() 53 oversampling.val1 = 1; /* Normal mode */ in main() 54 oversampling.val2 = 0; in main() 59 &oversampling); in main()
|
/Zephyr-latest/drivers/sensor/bosch/bmp180/ |
D | bmp180.h | 44 #define BMP180_ULTRALOWPOWER 0x00 /* oversampling 1x */ 45 #define BMP180_STANDARD 0x01 /* oversampling 2x */ 46 #define BMP180_HIGHRES 0x02 /* oversampling 4x */ 47 #define BMP180_ULTRAHIGH 0x03 /* oversampling 8x */
|
D | Kconfig | 17 Enable runtime changes of the oversampling value
|
/Zephyr-latest/samples/drivers/adc/adc_dt/boards/ |
D | da1469x_dk_pro.overlay | 44 zephyr,oversampling = <7>; 53 zephyr,oversampling = <0>; 62 zephyr,oversampling = <0>; 71 zephyr,oversampling = <0>; 89 zephyr,oversampling = <7>; 98 zephyr,oversampling = <7>; 108 zephyr,oversampling = <7>;
|
D | nrf54l15dk_nrf54l15_cpuapp.overlay | 33 zephyr,oversampling = <8>; 43 zephyr,oversampling = <8>;
|
/Zephyr-latest/drivers/sensor/nxp/nxp_kinetis_temp/ |
D | Kconfig | 25 int "ADC oversampling" 29 ADC oversampling to use for the temperature sensor and 30 bandgap voltage readings. Oversampling can help in providing
|
/Zephyr-latest/drivers/sensor/meas/ms5607/ |
D | Kconfig | 18 prompt "Pressure oversampling." 40 prompt "Temperature oversampling."
|
/Zephyr-latest/drivers/sensor/hp206c/ |
D | Kconfig | 18 bool "Oversampling rate set at runtime" 22 int "Oversampling rate"
|
/Zephyr-latest/dts/bindings/sensor/ |
D | ti,tmag5170.yaml | 122 oversampling: 128 too, unless `disable-temperature-oversampling` property is present. 176 disable-temperature-oversampling: 180 If false, temperature is oversampled according to `oversampling` 190 on the values of `oversampling`, `magnetic-channels`, `temperature-channel-enabled` 191 and `disable-temperature-oversampling` properties.
|
D | bosch,bmp180.yaml | 16 Default pressure oversampling rate. Only the following values are
|
D | bosch,bmp388.yaml | 56 Default pressure oversampling rate. Only the following values are 76 Default temperature oversampling rate. Only the following values are
|
D | bosch,bmp390.yaml | 57 Default pressure oversampling rate. Only the following values are 77 Default temperature oversampling rate. Only the following values are
|
/Zephyr-latest/tests/drivers/adc/adc_error_cases/src/ |
D | adc_error_cases.c | 32 .oversampling = 0, 37 * @brief test adc_read() with invalid oversampling value 49 /* Set oversampling to invalid value */ in ZTEST() 50 invalid_seq.oversampling = 99; in ZTEST()
|
/Zephyr-latest/samples/drivers/adc/adc_sequence/boards/ |
D | nrf54l15dk_nrf54l15_cpuapp.overlay | 39 zephyr,oversampling = <8>; 49 zephyr,oversampling = <8>;
|
D | nrf52840dk_nrf52840.overlay | 31 zephyr,oversampling = <8>;
|
/Zephyr-latest/drivers/adc/ |
D | adc_sam0.c | 325 if (sequence->oversampling > 10U) { in start_read() 326 LOG_ERR("Invalid oversampling"); in start_read() 330 adc->AVGCTRL.reg = ADC_AVGCTRL_SAMPLENUM(sequence->oversampling); in start_read() 338 if (sequence->oversampling > 4U && DSU->DID.bit.REVISION < 3) { in start_read() 339 adc->AVGCTRL.bit.ADJRES = sequence->oversampling - 4U; in start_read() 345 if (sequence->oversampling) { in start_read() 346 LOG_ERR("Oversampling requires 12 bit resolution"); in start_read() 353 if (sequence->oversampling) { in start_read() 354 LOG_ERR("Oversampling requires 12 bit resolution"); in start_read() 361 if (sequence->oversampling) { in start_read()
|
D | adc_mcux_gau_adc.c | 245 /* Set oversampling */ in mcux_gau_adc_do_read() 247 if (sequence->oversampling == 0) { in mcux_gau_adc_do_read() 249 } else if (sequence->oversampling == 1) { in mcux_gau_adc_do_read() 251 } else if (sequence->oversampling == 2) { in mcux_gau_adc_do_read() 253 } else if (sequence->oversampling == 3) { in mcux_gau_adc_do_read() 255 } else if (sequence->oversampling == 4) { in mcux_gau_adc_do_read() 258 LOG_ERR("Invalid oversampling setting"); in mcux_gau_adc_do_read()
|
D | adc_nxp_s32_adc_sar.c | 141 static int adc_nxp_s32_set_averaging(const struct device *dev, uint8_t oversampling) in adc_nxp_s32_set_averaging() argument 147 switch (oversampling) { in adc_nxp_s32_set_averaging() 164 LOG_ERR("Unsupported oversampling value"); in adc_nxp_s32_set_averaging() 223 error = adc_nxp_s32_set_averaging(dev, sequence->oversampling); in adc_nxp_s32_start_read_async() 228 if (sequence->oversampling) { in adc_nxp_s32_start_read_async() 229 LOG_ERR("Oversampling can't be changed"); in adc_nxp_s32_start_read_async()
|
/Zephyr-latest/samples/sensor/thermometer/boards/ |
D | nrf52840dk_nrf52840.overlay | 25 zephyr,oversampling = <2>; /* x4 */
|
/Zephyr-latest/dts/bindings/adc/ |
D | st,stm32-adc.yaml | 117 - "OVERSAMPLER_MINIMAL": Oversampler with 8 possible oversampling values (2, 4, 8, ..., 256) 118 - "OVERSAMPLER_EXTENDED": Oversampler with 1024 possible oversampling values (1..1024)
|