From 9ffa3a40fc601041fcdaeb696d84abe700545bbf Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 18 Nov 2022 17:07:34 +0100 Subject: [PATCH] esp32: log i2c init of es8388 as debug --- port/esp32/components/btstack/es8388.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/port/esp32/components/btstack/es8388.c b/port/esp32/components/btstack/es8388.c index 51ad12ba5..f92365f57 100644 --- a/port/esp32/components/btstack/es8388.c +++ b/port/esp32/components/btstack/es8388.c @@ -219,8 +219,7 @@ int es8388_init(es8388_config_t *cfg) res |= es_write_reg(ES8388_ADDR, ES8388_ADCPOWER, 0x09); //Power up ADC, Enable LIN&RIN, Power down MICBIAS, set int1lp to low power mode es8388_pa_power(true); - ESP_LOGE(ES8388_TAG, "init, out:%02x, in:%02x", cfg->dac_output, cfg->adc_input); - ESP_LOGE(ES8388_TAG, "res = %d", res); + ESP_LOGD(ES8388_TAG, "init, out:%02x, in:%02x -> %d", cfg->dac_output, cfg->adc_input, res); return res; }