fixes to build with esp idf v5.0.1

This commit is contained in:
Valeriy Chudnikov 2023-03-13 11:41:04 +03:00
parent 1759b774a9
commit 1cbb99edac
4 changed files with 8 additions and 8 deletions

View file

@ -34,7 +34,7 @@ SOFTWARE.
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
#include "freertos/task.h"
#include <driver/i2c.h>
#include "driver/i2c.h"
#include "sdkconfig.h"
@ -169,7 +169,7 @@ esp_err_t I2C_FN(_init)(i2c_port_t port) {
"to open it. See I2C Manager README for details.");
} else {
ESP_LOGI(TAG, "Initialised port %d (SDA: %d, SCL: %d, speed: %d Hz.)",
port, conf.sda_io_num, conf.scl_io_num, conf.master.clk_speed);
(int) port, (int) conf.sda_io_num, (int) conf.scl_io_num, (int) conf.master.clk_speed);
}
}
@ -186,7 +186,7 @@ esp_err_t I2C_FN(_read)(i2c_port_t port, uint16_t addr, uint32_t reg, uint8_t *b
// May seem weird, but init starts with a check if it's needed, no need for that check twice.
I2C_FN(_init)(port);
ESP_LOGV(TAG, "Reading port %d, addr 0x%03x, reg 0x%04x", port, addr, reg);
ESP_LOGV(TAG, "Reading port %d, addr 0x%03"PRIx16", reg 0x%04"PRIx32"", (int) port, addr, reg);
TickType_t timeout = 0;
#if defined (I2C_ZERO)
@ -217,7 +217,7 @@ esp_err_t I2C_FN(_read)(i2c_port_t port, uint16_t addr, uint32_t reg, uint8_t *b
i2c_cmd_link_delete(cmd);
I2C_FN(_unlock)((int)port);
} else {
ESP_LOGE(TAG, "Lock could not be obtained for port %d.", (int)port);
ESP_LOGE(TAG, "Lock could not be obtained for port %d.", port);
return ESP_ERR_TIMEOUT;
}
@ -239,7 +239,7 @@ esp_err_t I2C_FN(_write)(i2c_port_t port, uint16_t addr, uint32_t reg, const uin
// May seem weird, but init starts with a check if it's needed, no need for that check twice.
I2C_FN(_init)(port);
ESP_LOGV(TAG, "Writing port %d, addr 0x%03x, reg 0x%04x", port, addr, reg);
ESP_LOGV(TAG, "Writing port %d, addr 0x%03"PRIx16", reg 0x%04"PRIx32"", (int) port, addr, reg);
TickType_t timeout = 0;
#if defined (I2C_ZERO)