/hal_espressif-3.6.0/components/driver/esp32c3/ |
D | rtc_tempsensor.c | 119 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out) in temp_sensor_read_raw() argument 121 ESP_RETURN_ON_FALSE(tsens_out != NULL, ESP_ERR_INVALID_ARG, TAG, "no tsens_out specified"); in temp_sensor_read_raw() 122 *tsens_out = APB_SARADC.apb_tsens_ctrl.tsens_out; in temp_sensor_read_raw() 152 uint32_t tsens_out = 0; in temp_sensor_read_celsius() local 155 ret = temp_sensor_read_raw(&tsens_out); in temp_sensor_read_celsius() 156 ESP_LOGV(TAG, "tsens_out %d", tsens_out); in temp_sensor_read_celsius() 159 *celsius = parse_temp_sensor_raw_value(tsens_out, dac->offset); in temp_sensor_read_celsius()
|
/hal_espressif-3.6.0/components/driver/esp32h2/ |
D | rtc_tempsensor.c | 117 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out) in temp_sensor_read_raw() argument 119 ESP_RETURN_ON_FALSE(tsens_out != NULL, ESP_ERR_INVALID_ARG, TAG, "no tsens_out specified"); in temp_sensor_read_raw() 120 *tsens_out = APB_SARADC.apb_tsens_ctrl.tsens_out; in temp_sensor_read_raw() 150 uint32_t tsens_out = 0; in temp_sensor_read_celsius() local 153 ret = temp_sensor_read_raw(&tsens_out); in temp_sensor_read_celsius() 154 ESP_LOGV(TAG, "tsens_out %d", tsens_out); in temp_sensor_read_celsius() 157 *celsius = parse_temp_sensor_raw_value(tsens_out, dac->offset); in temp_sensor_read_celsius()
|
/hal_espressif-3.6.0/components/driver/esp32s3/ |
D | rtc_tempsensor.c | 133 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out) in temp_sensor_read_raw() argument 135 ESP_RETURN_ON_FALSE(tsens_out != NULL, ESP_ERR_INVALID_ARG, TAG, "no tsens_out specified"); in temp_sensor_read_raw() 144 *tsens_out = HAL_FORCE_READ_U32_REG_FIELD(SENS.sar_tctrl, tsens_out); in temp_sensor_read_raw() 184 uint32_t tsens_out = 0; in temp_sensor_read_celsius() local 187 ret = temp_sensor_read_raw(&tsens_out); in temp_sensor_read_celsius() 190 *celsius = parse_temp_sensor_raw_value(tsens_out, dac->offset); in temp_sensor_read_celsius()
|
/hal_espressif-3.6.0/components/driver/esp32s2/ |
D | rtc_tempsensor.c | 145 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out) in temp_sensor_read_raw() argument 147 ESP_RETURN_ON_FALSE(tsens_out != NULL, ESP_ERR_INVALID_ARG, TAG, "no tsens_out specified"); in temp_sensor_read_raw() 156 *tsens_out = SENS.sar_tctrl.tsens_out; in temp_sensor_read_raw() 192 uint32_t tsens_out = 0; in temp_sensor_read_celsius() local 195 ret = temp_sensor_read_raw(&tsens_out); in temp_sensor_read_celsius() 198 *celsius = parse_temp_sensor_raw_value(tsens_out, dac->offset); in temp_sensor_read_celsius()
|
/hal_espressif-3.6.0/examples/peripherals/temp_sensor/main/ |
D | temp_sensor_main.c | 26 float tsens_out; in tempsensor_example() local 36 temp_sensor_read_celsius(&tsens_out); in tempsensor_example() 37 ESP_LOGI(TAG, "Temperature out celsius %f°C", tsens_out); in tempsensor_example()
|
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/ |
D | temp_sensor.rst | 50 float tsens_out; 51 temp_sensor_read_celsius(&tsens_out);
|
/hal_espressif-3.6.0/components/driver/esp32s2/include/driver/ |
D | temp_sensor.h | 82 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out);
|
/hal_espressif-3.6.0/components/driver/esp32c3/include/driver/ |
D | temp_sensor.h | 77 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out);
|
/hal_espressif-3.6.0/components/driver/esp32h2/include/driver/ |
D | temp_sensor.h | 76 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out);
|
/hal_espressif-3.6.0/components/driver/esp32s3/include/driver/ |
D | temp_sensor.h | 82 esp_err_t temp_sensor_read_raw(uint32_t *tsens_out);
|
/hal_espressif-3.6.0/components/soc/esp32/include/soc/ |
D | sens_struct.h | 122 uint32_t tsens_out: 8; member
|
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/ |
D | sens_struct.h | 191 uint32_t tsens_out: 8; /*temperature sensor data out*/ member
|
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/ |
D | apb_saradc_struct.h | 229 uint32_t tsens_out: 8; member
|
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/ |
D | sens_struct.h | 185 uint32_t tsens_out : 8; /*temperature sensor data out*/ member
|
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/ |
D | apb_saradc_struct.h | 227 uint32_t tsens_out: 8; member
|