fix(logging): remove unnecessary newline

This commit is contained in:
Okke Formsma
2021-02-27 22:22:55 +01:00
committed by Pete Johanson
parent c643f1cd96
commit c01243d1c6
2 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ static int bvd_sample_fetch(const struct device *dev, enum sensor_channel chan)
&val);
uint16_t millivolts = val * (uint64_t)drv_cfg->full_ohm / drv_cfg->output_ohm;
LOG_DBG("ADC raw %d ~ %d mV => %d mV\n", drv_data->adc_raw, val, millivolts);
LOG_DBG("ADC raw %d ~ %d mV => %d mV", drv_data->adc_raw, val, millivolts);
uint8_t percent = lithium_ion_mv_to_pct(millivolts);
LOG_DBG("Percent: %d", percent);