65 lines
1.9 KiB
C
Raw Normal View History

2025-11-01 16:46:15 -04:00
/*#############################################################################
## Author: Shaun Reed ##
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
## ##
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
##############################################################################
*/
#ifndef I2C_H
#define I2C_H
#define I2C_BUS_PORT 0
#define I2C_DEFAULT_PIN_RST (-1)
2025-11-01 16:46:15 -04:00
#include <driver/i2c_master.h>
#include <esp_log.h>
2025-11-01 16:46:15 -04:00
/// Tag used for ESP logging.
2025-11-01 16:58:50 -04:00
static const char* I2C_TAG = "I2C component";
2025-11-01 16:46:15 -04:00
/**
* ESP I2C master bus handle getter.
*/
static i2c_master_bus_handle_t I2C_get()
{
i2c_master_bus_handle_t i2c = NULL;
ESP_ERROR_CHECK(i2c_master_get_bus_handle(0, &i2c));
return i2c;
}
2025-11-01 16:46:15 -04:00
/**
* Construct an ESP I2C master bus given a specific ESP I2C configuration.
* An I2C constructor may only be called one time in any application.
*
* @param config ESP I2C master bus configuration.
*/
static void I2C_config_init(const i2c_master_bus_config_t config)
2025-11-01 16:46:15 -04:00
{
i2c_master_bus_handle_t i2c = NULL;
2025-11-01 16:58:50 -04:00
ESP_LOGI(I2C_TAG, "Initializing new master I2C bus");
2025-11-01 16:46:15 -04:00
ESP_ERROR_CHECK(i2c_new_master_bus(&config, &i2c));
}
/**
* Construct and initialize an ESP I2C master bus.
* An I2C constructor may only be called one time in any application.
*
* @param sda GPIO pin for SDA
* @param scl GPIO pin for SCL
*/
static void I2C_init(gpio_num_t sda, gpio_num_t scl)
2025-11-01 16:46:15 -04:00
{
I2C_config_init((i2c_master_bus_config_t){
.i2c_port = I2C_BUS_PORT,
.sda_io_num = sda,
.scl_io_num = scl,
.clk_source = I2C_CLK_SRC_DEFAULT,
.glitch_ignore_cnt = 7,
.flags =
{
2025-11-01 16:46:15 -04:00
.enable_internal_pullup = true,
},
});
2025-11-01 16:46:15 -04:00
}
#endif // I2C_H