forked from espressif/arduino-esp32
Update to latest idf once again
This commit is contained in:
@ -30,7 +30,8 @@ extern "C" {
|
||||
|
||||
#include <esp_log.h>
|
||||
#include <utility>
|
||||
#include <fmt/core.h>
|
||||
|
||||
#include "goefmt.h"
|
||||
|
||||
#include "esp32-hal-i2c.h"
|
||||
#include "esp32-hal-log.h"
|
||||
@ -52,7 +53,7 @@ std::string toString(i2c_err_t val)
|
||||
case I2C_ERROR_NO_BEGIN: return "I2C_ERROR_NO_BEGIN";
|
||||
default:
|
||||
ESP_LOGW("WIRE", "unknown i2c_err_t(%i)", std::to_underlying(val));
|
||||
return fmt::format("Unknown i2c_err_t({})", std::to_underlying(val));
|
||||
return goe::format("Unknown i2c_err_t({})", std::to_underlying(val));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user