Update to latest idf once again

This commit is contained in:
2025-06-02 10:56:36 +02:00
parent 362705c0e0
commit c780d6fc58
6 changed files with 210 additions and 408 deletions

View File

@ -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));
}
}