|
|
|
@ -2,19 +2,19 @@
@@ -2,19 +2,19 @@
|
|
|
|
|
#include <string.h> |
|
|
|
|
|
|
|
|
|
#include "esp_log.h" |
|
|
|
|
#include "sdkconfig.h" |
|
|
|
|
#include "i2c_mutex.h" |
|
|
|
|
#include "sdkconfig.h" |
|
|
|
|
|
|
|
|
|
#include "freertos/FreeRTOS.h" |
|
|
|
|
#include "freertos/task.h" |
|
|
|
|
|
|
|
|
|
#include "u8g2_esp32_hal.h" |
|
|
|
|
|
|
|
|
|
static const char * TAG = "u8g2_hal"; |
|
|
|
|
static const char *TAG = "u8g2_hal"; |
|
|
|
|
static const unsigned int I2C_TIMEOUT_MS = 100; |
|
|
|
|
|
|
|
|
|
static spi_device_handle_t handle_spi; // SPI handle.
|
|
|
|
|
static i2c_cmd_handle_t handle_i2c; // I2C handle.
|
|
|
|
|
static i2c_cmd_handle_t handle_i2c; // I2C handle.
|
|
|
|
|
|
|
|
|
|
#undef ESP_ERROR_CHECK |
|
|
|
|
#define ESP_ERROR_CHECK(x) \ |
|
|
|
@ -52,28 +52,28 @@ uint8_t u8g2_esp32_spi_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -52,28 +52,28 @@ uint8_t u8g2_esp32_spi_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
|
|
|
|
|
spi_bus_config_t bus_config; |
|
|
|
|
memset(&bus_config, 0, sizeof(spi_bus_config_t)); |
|
|
|
|
bus_config.sclk_io_num = u8x8->pins[U8X8_PIN_SPI_CLOCK]; // CLK
|
|
|
|
|
bus_config.mosi_io_num = u8x8->pins[U8X8_PIN_SPI_DATA]; // MOSI
|
|
|
|
|
bus_config.miso_io_num = -1; // MISO
|
|
|
|
|
bus_config.quadwp_io_num = -1; // Not used
|
|
|
|
|
bus_config.quadhd_io_num = -1; // Not used
|
|
|
|
|
bus_config.sclk_io_num = u8x8->pins[U8X8_PIN_SPI_CLOCK]; // CLK
|
|
|
|
|
bus_config.mosi_io_num = u8x8->pins[U8X8_PIN_SPI_DATA]; // MOSI
|
|
|
|
|
bus_config.miso_io_num = -1; // MISO
|
|
|
|
|
bus_config.quadwp_io_num = -1; // Not used
|
|
|
|
|
bus_config.quadhd_io_num = -1; // Not used
|
|
|
|
|
// ESP_LOGI(TAG, "... Initializing bus.");
|
|
|
|
|
ESP_ERROR_CHECK(spi_bus_initialize(HSPI_HOST, &bus_config, 1)); |
|
|
|
|
|
|
|
|
|
spi_device_interface_config_t dev_config; |
|
|
|
|
dev_config.address_bits = 0; |
|
|
|
|
dev_config.command_bits = 0; |
|
|
|
|
dev_config.dummy_bits = 0; |
|
|
|
|
dev_config.mode = 0; |
|
|
|
|
dev_config.duty_cycle_pos = 0; |
|
|
|
|
dev_config.address_bits = 0; |
|
|
|
|
dev_config.command_bits = 0; |
|
|
|
|
dev_config.dummy_bits = 0; |
|
|
|
|
dev_config.mode = 0; |
|
|
|
|
dev_config.duty_cycle_pos = 0; |
|
|
|
|
dev_config.cs_ena_posttrans = 0; |
|
|
|
|
dev_config.cs_ena_pretrans = 0; |
|
|
|
|
dev_config.clock_speed_hz = 10000; |
|
|
|
|
dev_config.spics_io_num = u8x8->pins[U8X8_PIN_CS]; |
|
|
|
|
dev_config.flags = 0; |
|
|
|
|
dev_config.queue_size = 200; |
|
|
|
|
dev_config.pre_cb = NULL; |
|
|
|
|
dev_config.post_cb = NULL; |
|
|
|
|
dev_config.cs_ena_pretrans = 0; |
|
|
|
|
dev_config.clock_speed_hz = 10000; |
|
|
|
|
dev_config.spics_io_num = u8x8->pins[U8X8_PIN_CS]; |
|
|
|
|
dev_config.flags = 0; |
|
|
|
|
dev_config.queue_size = 200; |
|
|
|
|
dev_config.pre_cb = NULL; |
|
|
|
|
dev_config.post_cb = NULL; |
|
|
|
|
// ESP_LOGI(TAG, "... Adding device bus.");
|
|
|
|
|
ESP_ERROR_CHECK(spi_bus_add_device(HSPI_HOST, &dev_config, &handle_spi)); |
|
|
|
|
|
|
|
|
@ -82,10 +82,10 @@ uint8_t u8g2_esp32_spi_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -82,10 +82,10 @@ uint8_t u8g2_esp32_spi_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
|
|
|
|
|
case U8X8_MSG_BYTE_SEND: { |
|
|
|
|
spi_transaction_t trans_desc; |
|
|
|
|
trans_desc.addr = 0; |
|
|
|
|
trans_desc.cmd = 0; |
|
|
|
|
trans_desc.flags = 0; |
|
|
|
|
trans_desc.length = 8 * arg_int; // Number of bits NOT number of bytes.
|
|
|
|
|
trans_desc.addr = 0; |
|
|
|
|
trans_desc.cmd = 0; |
|
|
|
|
trans_desc.flags = 0; |
|
|
|
|
trans_desc.length = 8 * arg_int; // Number of bits NOT number of bytes.
|
|
|
|
|
trans_desc.rxlength = 0; |
|
|
|
|
trans_desc.tx_buffer = arg_ptr; |
|
|
|
|
trans_desc.rx_buffer = NULL; |
|
|
|
@ -105,10 +105,10 @@ uint8_t u8g2_esp32_spi_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -105,10 +105,10 @@ uint8_t u8g2_esp32_spi_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, |
|
|
|
|
void *arg_ptr) { |
|
|
|
|
#define TXBUF_SIZE 32 |
|
|
|
|
static uint8_t txbuf[TXBUF_SIZE]; |
|
|
|
|
static uint8_t txbuf[TXBUF_SIZE]; |
|
|
|
|
static uint8_t *txbuf_ptr; |
|
|
|
|
// ESP_LOGV(TAG, "i2c_cb: Received a msg: %d, arg_int: %d, arg_ptr: %p", msg,
|
|
|
|
|
// arg_int, arg_ptr);
|
|
|
|
|
// ESP_LOGV(TAG, "i2c_cb: Received a msg: %d, arg_int: %d, arg_ptr: %p", msg,
|
|
|
|
|
// arg_int, arg_ptr);
|
|
|
|
|
switch (msg) { |
|
|
|
|
case U8X8_MSG_BYTE_SET_DC: { |
|
|
|
|
if (u8x8->pins[U8X8_PIN_DC] != U8X8_PIN_NONE) { |
|
|
|
@ -126,10 +126,10 @@ uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -126,10 +126,10 @@ uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
i2c_config_t conf; |
|
|
|
|
conf.mode = I2C_MODE_MASTER; |
|
|
|
|
conf.sda_io_num = u8x8->pins[U8X8_PIN_I2C_DATA]; |
|
|
|
|
conf.mode = I2C_MODE_MASTER; |
|
|
|
|
conf.sda_io_num = u8x8->pins[U8X8_PIN_I2C_DATA]; |
|
|
|
|
conf.sda_pullup_en = GPIO_PULLUP_ENABLE; |
|
|
|
|
conf.scl_io_num = u8x8->pins[U8X8_PIN_I2C_CLOCK]; |
|
|
|
|
conf.scl_io_num = u8x8->pins[U8X8_PIN_I2C_CLOCK]; |
|
|
|
|
conf.scl_pullup_en = GPIO_PULLUP_ENABLE; |
|
|
|
|
ESP_LOGV(TAG, "clk_speed %d", I2C_MASTER_FREQ_HZ); |
|
|
|
|
conf.master.clk_speed = I2C_MASTER_FREQ_HZ; |
|
|
|
@ -145,7 +145,7 @@ uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -145,7 +145,7 @@ uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
|
|
|
|
|
case U8X8_MSG_BYTE_SEND: { |
|
|
|
|
uint8_t *data_ptr = (uint8_t *)arg_ptr; |
|
|
|
|
size_t data_len = (size_t)arg_int; |
|
|
|
|
size_t data_len = (size_t)arg_int; |
|
|
|
|
// ESP_LOGV(TAG, "U8x8_MSG_BYTE_SEND. txbuf len: %d", txbuf_ptr - txbuf);
|
|
|
|
|
// ESP_LOG_BUFFER_HEXDUMP(TAG, data_ptr, data_len, ESP_LOG_VERBOSE);
|
|
|
|
|
|
|
|
|
@ -160,7 +160,7 @@ uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -160,7 +160,7 @@ uint8_t u8g2_esp32_i2c_byte_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
|
|
|
|
|
case U8X8_MSG_BYTE_START_TRANSFER: { |
|
|
|
|
uint8_t i2c_address = u8x8_GetI2CAddress(u8x8); |
|
|
|
|
handle_i2c = i2c_cmd_link_create(); |
|
|
|
|
handle_i2c = i2c_cmd_link_create(); |
|
|
|
|
// ESP_LOGV(TAG, "Start I2C transfer to %02X.", i2c_address >> 1);
|
|
|
|
|
ESP_ERROR_CHECK(i2c_master_start(handle_i2c)); |
|
|
|
|
ESP_ERROR_CHECK(i2c_master_write_byte( |
|
|
|
@ -208,9 +208,9 @@ uint8_t u8g2_esp32_gpio_and_delay_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -208,9 +208,9 @@ uint8_t u8g2_esp32_gpio_and_delay_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
// RESET have been specified then we define those pins as GPIO outputs.
|
|
|
|
|
case U8X8_MSG_GPIO_AND_DELAY_INIT: { |
|
|
|
|
uint64_t bitmask = 0; |
|
|
|
|
uint8_t dc = u8x8->pins[U8X8_PIN_DC]; |
|
|
|
|
uint8_t reset = u8x8->pins[U8X8_PIN_RESET]; |
|
|
|
|
uint8_t cs = u8x8->pins[U8X8_PIN_CS]; |
|
|
|
|
uint8_t dc = u8x8->pins[U8X8_PIN_DC]; |
|
|
|
|
uint8_t reset = u8x8->pins[U8X8_PIN_RESET]; |
|
|
|
|
uint8_t cs = u8x8->pins[U8X8_PIN_CS]; |
|
|
|
|
if (dc != U8X8_PIN_NONE) { |
|
|
|
|
bitmask = bitmask | (1ull << dc); |
|
|
|
|
} |
|
|
|
@ -228,10 +228,10 @@ uint8_t u8g2_esp32_gpio_and_delay_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
@@ -228,10 +228,10 @@ uint8_t u8g2_esp32_gpio_and_delay_cb(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int,
|
|
|
|
|
} |
|
|
|
|
gpio_config_t gpioConfig; |
|
|
|
|
gpioConfig.pin_bit_mask = bitmask; |
|
|
|
|
gpioConfig.mode = GPIO_MODE_OUTPUT; |
|
|
|
|
gpioConfig.pull_up_en = GPIO_PULLUP_DISABLE; |
|
|
|
|
gpioConfig.mode = GPIO_MODE_OUTPUT; |
|
|
|
|
gpioConfig.pull_up_en = GPIO_PULLUP_DISABLE; |
|
|
|
|
gpioConfig.pull_down_en = GPIO_PULLDOWN_ENABLE; |
|
|
|
|
gpioConfig.intr_type = GPIO_INTR_DISABLE; |
|
|
|
|
gpioConfig.intr_type = GPIO_INTR_DISABLE; |
|
|
|
|
gpio_config(&gpioConfig); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|