Home
last modified time | relevance | path

Searched full:resistance (Results 1 – 25 of 42) sorted by relevance

12

/Zephyr-latest/drivers/sensor/maxim/max31865/
Dmax31865.c81 * Apply the Callendar-Van Dusen equation to convert the RTD resistance
87 * @param resistance measured resistance
88 * @param resistance_0 constant resistance at 0oC
91 static double calculate_temperature(double resistance, double resistance_0) in calculate_temperature() argument
94 double delta = (RTD_A * RTD_A) - 4 * RTD_B * (1.0 - resistance / resistance_0); in calculate_temperature()
100 resistance /= resistance_0; in calculate_temperature()
101 resistance *= 100.0; in calculate_temperature()
102 temperature = RTD_C[0] + RTD_C[1] * resistance + RTD_C[2] * pow(resistance, 2) - in calculate_temperature()
103 RTD_C[3] * pow(resistance, 3) - RTD_C[4] * pow(resistance, 4) + in calculate_temperature()
104 RTD_C[5] * pow(resistance, 5); in calculate_temperature()
[all …]
/Zephyr-latest/samples/shields/lmp90100_evb/rtd/src/
Dmain.c17 /* Nominal RTD (PT100) resistance in ohms */
26 static double rtd_temperature(int nom, double resistance) in rtd_temperature() argument
34 (nom - resistance)); in rtd_temperature()
44 double resistance; in main() local
74 resistance = (buffer / adc_max) * BOTTOM_RESISTANCE; in main()
75 printf("R: %.02f ohm\n", resistance); in main()
78 resistance)); in main()
/Zephyr-latest/scripts/utils/
Dntc_thermistor_table.py16 Nominal resistance (R25) - The thermistor's resistance measured at 25C
17 Beta value (25/85) - This is the resistance value at 25C and at 85C
39 resistance = r25 * math.exp(exp)
41 return resistance
56 resistance = beta_equation_calc_resistance(r25, beta, temp)
57 table.append(f"<({int(temp)}) {int(resistance)}>")
67 "-r25", type=float, required=True, help="Nominal resistance of thermistor"
/Zephyr-latest/dts/bindings/iio/afe/
Dvoltage-divider.yaml6 resistance of the upper leg.
22 Resistance of the lower leg of the voltage divider
27 Resistance of the full path through the voltage divider.
30 resistance-based sensor.
Dcurrent-sense-shunt.yaml27 Resistance of the shunt resistor in micro-ohms
Dcurrent-sense-amplifier.yaml27 Resistance of the shunt resistor in milli-ohms.
/Zephyr-latest/dts/bindings/sensor/
Dmaxim,max31865.yaml15 resistance-at-zero:
18 description: Sensor resistance in ohms at 0 Celsius (100 ohms for PT100, 1000 ohms for PT1000)
20 resistance-reference:
23 description: Circuit reference resistance in ohms (recommended on MAX31865 datasheet 400 ohms
Dntc-thermistor.yaml25 The pullup resistance in the circuit.
30 The pulldown resistance in the circuit.
37 assumed to be connected-ground, which usually means a pull-down resistance
Dntc-thermistor-generic.yaml15 Compensation table, formatted as temperature, resistance pairs. A script
Dnordic,npm1300-charger.yaml61 description: Thermistor nominal resistance type in ohms.
/Zephyr-latest/drivers/sensor/ntc_thermistor/
Dntc_thermistor.h35 * @param[in] ohm Read resistance of NTC thermistor
42 * @brief Calculate the resistance read from NTC thermistor.
48 * @return Thermistor resistance
/Zephyr-latest/drivers/sensor/ams/ams_iAQcore/
DiAQcore.h16 int32_t resistance; member
28 int32_t resistance; member
DiAQcore.c51 drv_data->resistance = sys_be32_to_cpu(buf.resistance); in iaqcore_sample_fetch()
86 val->val1 = drv_data->resistance; in iaqcore_channel_get()
/Zephyr-latest/tests/drivers/w1/w1_api/boards/
Dnucleo_g0b1re.overlay11 * with approximately R=5k resistance is suggested.
/Zephyr-latest/samples/boards/espressif/deep_sleep/
DKconfig24 wake-up, an external pull-up resistance is necessary.
/Zephyr-latest/drivers/sensor/aosong/ags10/
Dags10.h24 #define AGS10_REG_ZERO_POINT_CALIBRATION_SET 0x0000 /* Set sensor resistance to zero-point */
/Zephyr-latest/include/zephyr/drivers/adc/
Dcurrent_sense_shunt.h46 /* multiplies by 1,000,000 before dividing by shunt resistance in micro-ohms. */ in current_sense_shunt_scale_dt()
/Zephyr-latest/dts/bindings/rtc/
Dmicrocrystal,rv3028.yaml48 Enable the trickle charger with provided current-limiting resistance in ohms. The trickle
/Zephyr-latest/samples/shields/lmp90100_evb/rtd/
DREADME.rst10 of a Resistance Temperature Detector (RTD) sensor using the LMP90100
/Zephyr-latest/dts/bindings/w1/
Dmaxim,ds2477_85_common.yaml54 Default 1-Wire Weak Pullup Resistance in ohms.
/Zephyr-latest/samples/sensor/sgp40_sht4x/
DREADME.rst66 to the logarithm of the sensors resistance, hence it is labeled as [a.u.]
/Zephyr-latest/drivers/lora/
Dsx126x_stm32wl.c80 /* Better Resistance of the RFO High Power Tx to Antenna in sx126x_set_tx_params()
/Zephyr-latest/dts/bindings/pinctrl/
Dnxp,mcux-rt-pinctrl.yaml127 currently the only supported pull down resistance.
/Zephyr-latest/tests/drivers/build_all/sensor/
Dspi.dtsi215 resistance-at-zero = <100>;
216 resistance-reference = <430>;
/Zephyr-latest/include/zephyr/drivers/
Dsensor_data_types.h139 q31_t resistance; /**< Unit: ohms */ member

12