| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- /*
- * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifdef __cpp_exceptions
- #include "driver/i2c.h"
- #include "i2c_cxx.hpp"
- using namespace std;
- namespace idf {
- #define I2C_CHECK_THROW(err) CHECK_THROW_SPECIFIC((err), I2CException)
- /**
- * I2C bus are defined in the header files, let's check that the values are correct
- */
- #if SOC_I2C_NUM >= 2
- static_assert(I2C_NUM_1 == 1, "I2C_NUM_1 must be equal to 1");
- #endif // SOC_I2C_NUM >= 2
- static_assert(I2C_NUM_MAX == SOC_I2C_NUM, "I2C_NUM_MAX must be equal to SOC_I2C_NUM");
- namespace {
- i2c_port_t i2c_num_to_driver_type(I2CNumber num) {
- return static_cast<i2c_port_t>(num.get_num());
- }
- }
- esp_err_t check_i2c_num(uint32_t i2c_num) noexcept
- {
- if (i2c_num >= I2C_NUM_MAX) {
- return ESP_ERR_INVALID_ARG;
- }
- return ESP_OK;
- }
- esp_err_t check_i2c_addr(uint32_t addr) noexcept
- {
- // maximum I2C address currently supported in the C++ classes is 127
- if (addr > 0x7f) {
- return ESP_ERR_INVALID_ARG;
- }
- return ESP_OK;
- }
- I2CException::I2CException(esp_err_t error) : ESPException(error) { }
- I2CTransferException::I2CTransferException(esp_err_t error) : I2CException(error) { }
- uint32_t I2CNumber::get_num()
- {
- return get_value();
- }
- I2CAddress::I2CAddress(uint8_t addr) : StrongValueComparable<uint8_t> (addr)
- {
- esp_err_t error = check_i2c_addr(addr);
- if (error != ESP_OK) {
- throw I2CException(error);
- }
- }
- uint8_t I2CAddress::get_addr()
- {
- return get_value();
- }
- I2CCommandLink::I2CCommandLink()
- {
- handle = i2c_cmd_link_create();
- if (!handle) {
- throw I2CException(ESP_ERR_NO_MEM);
- }
- }
- I2CCommandLink::~I2CCommandLink()
- {
- i2c_cmd_link_delete(handle);
- }
- void I2CCommandLink::start()
- {
- I2C_CHECK_THROW(i2c_master_start(handle));
- }
- void I2CCommandLink::write(const std::vector<uint8_t> &bytes, bool expect_ack)
- {
- I2C_CHECK_THROW(i2c_master_write(handle, bytes.data(), bytes.size(), expect_ack));
- }
- void I2CCommandLink::write_byte(uint8_t byte, bool expect_ack)
- {
- I2C_CHECK_THROW(i2c_master_write_byte(handle, byte, expect_ack));
- }
- void I2CCommandLink::read(std::vector<uint8_t> &bytes)
- {
- I2C_CHECK_THROW(i2c_master_read(handle, bytes.data(), bytes.size(), I2C_MASTER_LAST_NACK));
- }
- void I2CCommandLink::stop()
- {
- I2C_CHECK_THROW(i2c_master_stop(handle));
- }
- void I2CCommandLink::execute_transfer(I2CNumber i2c_num, chrono::milliseconds driver_timeout)
- {
- esp_err_t err = i2c_master_cmd_begin(i2c_num_to_driver_type(i2c_num), handle, driver_timeout.count() / portTICK_PERIOD_MS);
- if (err != ESP_OK) {
- throw I2CTransferException(err);
- }
- }
- I2CBus::I2CBus(I2CNumber i2c_number) : i2c_num(std::move(i2c_number)) { }
- I2CBus::~I2CBus() { }
- I2CMaster::I2CMaster(I2CNumber i2c_number,
- SCL_GPIO scl_gpio,
- SDA_GPIO sda_gpio,
- Frequency clock_speed,
- bool scl_pullup,
- bool sda_pullup)
- : I2CBus(std::move(i2c_number))
- {
- i2c_config_t conf = {};
- conf.mode = I2C_MODE_MASTER;
- conf.scl_io_num = scl_gpio.get_num();
- conf.scl_pullup_en = scl_pullup;
- conf.sda_io_num = sda_gpio.get_num();
- conf.sda_pullup_en = sda_pullup;
- conf.master.clk_speed = clock_speed.get_value();
- I2C_CHECK_THROW(i2c_param_config(i2c_num_to_driver_type(i2c_num), &conf));
- I2C_CHECK_THROW(i2c_driver_install(i2c_num_to_driver_type(i2c_num), conf.mode, 0, 0, 0));
- }
- I2CMaster::~I2CMaster()
- {
- i2c_driver_delete(i2c_num_to_driver_type(i2c_num));
- }
- void I2CMaster::sync_write(I2CAddress i2c_addr, const vector<uint8_t> &data)
- {
- I2CWrite writer(data);
- writer.do_transfer(i2c_num, i2c_addr);
- }
- std::vector<uint8_t> I2CMaster::sync_read(I2CAddress i2c_addr, size_t n_bytes)
- {
- I2CRead reader(n_bytes);
- return reader.do_transfer(i2c_num, i2c_addr);
- }
- vector<uint8_t> I2CMaster::sync_transfer(I2CAddress i2c_addr,
- const std::vector<uint8_t> &write_data,
- size_t read_n_bytes)
- {
- I2CComposed composed_transfer;
- composed_transfer.add_write(write_data);
- composed_transfer.add_read(read_n_bytes);
- return composed_transfer.do_transfer(i2c_num, i2c_addr)[0];
- }
- #if CONFIG_SOC_I2C_SUPPORT_SLAVE
- I2CSlave::I2CSlave(I2CNumber i2c_number,
- SCL_GPIO scl_gpio,
- SDA_GPIO sda_gpio,
- I2CAddress slave_addr,
- size_t rx_buf_len,
- size_t tx_buf_len,
- bool scl_pullup,
- bool sda_pullup)
- : I2CBus(std::move(i2c_number))
- {
- i2c_config_t conf = {};
- conf.mode = I2C_MODE_SLAVE;
- conf.scl_io_num = scl_gpio.get_value();
- conf.scl_pullup_en = scl_pullup;
- conf.sda_io_num = sda_gpio.get_value();
- conf.sda_pullup_en = sda_pullup;
- conf.slave.addr_10bit_en = 0;
- conf.slave.slave_addr = slave_addr.get_addr();
- I2C_CHECK_THROW(i2c_param_config(i2c_num_to_driver_type(i2c_num), &conf));
- I2C_CHECK_THROW(i2c_driver_install(i2c_num_to_driver_type(i2c_num), conf.mode, rx_buf_len, tx_buf_len, 0));
- }
- I2CSlave::~I2CSlave()
- {
- i2c_driver_delete(i2c_num_to_driver_type(i2c_num));
- }
- int I2CSlave::write_raw(const uint8_t *data, size_t data_len, chrono::milliseconds timeout)
- {
- return i2c_slave_write_buffer(i2c_num_to_driver_type(i2c_num), data, data_len, (TickType_t) timeout.count() / portTICK_PERIOD_MS);
- }
- int I2CSlave::read_raw(uint8_t *buffer, size_t buffer_len, chrono::milliseconds timeout)
- {
- return i2c_slave_read_buffer(i2c_num_to_driver_type(i2c_num), buffer, buffer_len, (TickType_t) timeout.count() / portTICK_PERIOD_MS);
- }
- #endif // CONFIG_SOC_I2C_SUPPORT_SLAVE
- I2CWrite::I2CWrite(const vector<uint8_t> &bytes, chrono::milliseconds driver_timeout)
- : I2CTransfer<void>(driver_timeout), bytes(bytes)
- {
- if (bytes.empty()) {
- throw I2CException(ESP_ERR_INVALID_ARG);
- }
- }
- void I2CWrite::queue_cmd(I2CCommandLink &handle, I2CAddress i2c_addr)
- {
- handle.start();
- handle.write_byte(i2c_addr.get_value() << 1 | I2C_MASTER_WRITE);
- handle.write(bytes);
- }
- void I2CWrite::process_result() { }
- I2CRead::I2CRead(size_t size, chrono::milliseconds driver_timeout)
- : I2CTransfer<vector<uint8_t> >(driver_timeout), bytes(size)
- {
- if (size == 0) {
- throw I2CException(ESP_ERR_INVALID_ARG);
- }
- }
- void I2CRead::queue_cmd(I2CCommandLink &handle, I2CAddress i2c_addr)
- {
- handle.start();
- handle.write_byte(i2c_addr.get_value() << 1 | I2C_MASTER_READ);
- handle.read(bytes);
- }
- vector<uint8_t> I2CRead::process_result()
- {
- return bytes;
- }
- I2CComposed::I2CComposed(chrono::milliseconds driver_timeout)
- : I2CTransfer<vector<vector<uint8_t> > >(driver_timeout), transfer_list() { }
- void I2CComposed::CompTransferNodeRead::queue_cmd(I2CCommandLink &handle, I2CAddress i2c_addr)
- {
- handle.write_byte(i2c_addr.get_value() << 1 | I2C_MASTER_READ);
- handle.read(bytes);
- }
- void I2CComposed::CompTransferNodeRead::process_result(std::vector<std::vector<uint8_t> > &read_results)
- {
- read_results.push_back(bytes);
- }
- void I2CComposed::CompTransferNodeWrite::queue_cmd(I2CCommandLink &handle, I2CAddress i2c_addr)
- {
- handle.write_byte(i2c_addr.get_value() << 1 | I2C_MASTER_WRITE);
- handle.write(bytes);
- }
- void I2CComposed::add_read(size_t size)
- {
- if (!size) {
- throw I2CException(ESP_ERR_INVALID_ARG);
- }
- transfer_list.push_back(make_shared<CompTransferNodeRead>(size));
- }
- void I2CComposed::add_write(std::vector<uint8_t> bytes)
- {
- if (bytes.empty()) {
- throw I2CException(ESP_ERR_INVALID_ARG);
- }
- transfer_list.push_back(make_shared<CompTransferNodeWrite>(bytes));
- }
- void I2CComposed::queue_cmd(I2CCommandLink &handle, I2CAddress i2c_addr)
- {
- for (auto it = transfer_list.begin(); it != transfer_list.end(); it++) {
- handle.start();
- (*it)->queue_cmd(handle, i2c_addr);
- }
- }
- std::vector<std::vector<uint8_t> > I2CComposed::process_result()
- {
- std::vector<std::vector<uint8_t> > results;
- for (auto it = transfer_list.begin(); it != transfer_list.end(); it++) {
- (*it)->process_result(results);
- }
- return results;
- }
- } // idf
- #endif // __cpp_exceptions
|