Skip to content

Commit

Permalink
Merge pull request #3 from tasmota/debug_rm
Browse files Browse the repository at this point in the history
remove debugging printf
  • Loading branch information
Jason2866 authored Jul 14, 2021
2 parents 1d7068e + d75ce5a commit 6e41eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/driver/esp32c3/rtc_tempsensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ esp_err_t temp_sensor_read_celsius(float *celsius)
esp_err_t ret = temp_sensor_get_config(&tsens);
if (ret == ESP_OK) {
ret = temp_sensor_read_raw(&tsens_out);
printf("tsens_out %d\r\n", tsens_out);
// printf("tsens_out %d\r\n", tsens_out);
TSENS_CHECK(ret == ESP_OK, ret);
const tsens_dac_offset_t *dac = &dac_offset[tsens.dac_offset];
*celsius = parse_temp_sensor_raw_value(tsens_out, dac->offset);
Expand Down

0 comments on commit 6e41eb7

Please sign in to comment.