44 lines
2 KiB
C
44 lines
2 KiB
C
|
/*
|
||
|
* Copyright © 2020 Wolfgang Christl
|
||
|
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||
|
* software and associated documentation files (the “Software”), to deal in the Software
|
||
|
* without restriction, including without limitation the rights to use, copy, modify, merge,
|
||
|
* publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
|
||
|
* to whom the Software is furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in all copies or
|
||
|
* substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||
|
* PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||
|
* FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
|
* SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#include <driver/i2c.h>
|
||
|
#include <esp_log.h>
|
||
|
|
||
|
#define I2C_MASTER_FREQ_HZ 100000 /* 100kHz*/
|
||
|
#define I2C_MASTER_TX_BUF_DISABLE 0 /* I2C master doesn't need buffer */
|
||
|
#define I2C_MASTER_RX_BUF_DISABLE 0 /* I2C master doesn't need buffer */
|
||
|
|
||
|
/**
|
||
|
* @brief ESP32 I2C init as master
|
||
|
* @ret ESP32 error code
|
||
|
*/
|
||
|
esp_err_t i2c_master_init(void) {
|
||
|
int i2c_master_port = I2C_NUM_0;
|
||
|
i2c_config_t conf;
|
||
|
conf.mode = I2C_MODE_MASTER;
|
||
|
conf.sda_io_num = CONFIG_LV_TOUCH_I2C_SDA;
|
||
|
conf.sda_pullup_en = GPIO_PULLUP_ENABLE;
|
||
|
conf.scl_io_num = CONFIG_LV_TOUCH_I2C_SCL;
|
||
|
conf.scl_pullup_en = GPIO_PULLUP_ENABLE;
|
||
|
conf.master.clk_speed = I2C_MASTER_FREQ_HZ;
|
||
|
i2c_param_config(i2c_master_port, &conf);
|
||
|
return i2c_driver_install(i2c_master_port, conf.mode, I2C_MASTER_RX_BUF_DISABLE, I2C_MASTER_TX_BUF_DISABLE, 0);
|
||
|
}
|