Compare commits
3 Commits
v1.2.0
...
47ca5cf2cb
| Author | SHA1 | Date | |
|---|---|---|---|
| 47ca5cf2cb | |||
| c9365e40ba | |||
| 9ead86ba5e |
@@ -15,7 +15,7 @@
|
||||
|
||||
1. Enable interrupt support only if input GPIO's are used.
|
||||
2. All the INT GPIO's on the extenders must be connected to the one GPIO on ESP.
|
||||
3. The input GPIO's are always pullup to the power supply. They must be connected to ground to trigger an interrupt.
|
||||
3. The input GPIO's are always pullup to the power supply.
|
||||
|
||||
## Dependencies
|
||||
|
||||
@@ -133,6 +133,6 @@ void app_main(void)
|
||||
void zh_pcf8574_event_handler(void *arg, esp_event_base_t event_base, int32_t event_id, void *event_data) // Required only if used input GPIO interrupts.
|
||||
{
|
||||
zh_pcf8574_event_on_isr_t *event = event_data;
|
||||
printf("Interrupt happened on device address 0x%02X on GPIO number %d.\n", event->i2c_address, event->gpio_number);
|
||||
printf("Interrupt happened on device address 0x%02X on GPIO number %d at level %d.\n", event->i2c_address, event->gpio_number, event->gpio_level);
|
||||
}
|
||||
```
|
||||
|
||||
73
include/zh_pcf8574.h
Normal file → Executable file
73
include/zh_pcf8574.h
Normal file → Executable file
@@ -1,3 +1,7 @@
|
||||
/**
|
||||
* @file zh_pcf8574.h
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "esp_log.h"
|
||||
@@ -12,6 +16,9 @@
|
||||
#include "esp_event.h"
|
||||
#include "zh_vector.h"
|
||||
|
||||
/**
|
||||
* @brief PCF8574 expander initial default values.
|
||||
*/
|
||||
#define ZH_PCF8574_INIT_CONFIG_DEFAULT() \
|
||||
{ \
|
||||
.task_priority = 10, \
|
||||
@@ -33,46 +40,58 @@ extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
typedef struct // Structure for initial initialization of PCF8574 expander.
|
||||
/**
|
||||
* @brief Structure for initial initialization of PCF8574 expander.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
uint8_t task_priority; // Task priority for the PCF8574 expander isr processing. @note It is not recommended to set a value less than 10.
|
||||
uint16_t stack_size; // Stack size for task for the PCF8574 expander isr processing processing. @note The minimum size is 2048 bytes.
|
||||
uint8_t i2c_address; // Expander I2C address.
|
||||
bool p0_gpio_work_mode; // Expander GPIO PO work mode. True for input, false for output.
|
||||
bool p1_gpio_work_mode; // Expander GPIO P1 work mode. True for input, false for output.
|
||||
bool p2_gpio_work_mode; // Expander GPIO P2 work mode. True for input, false for output.
|
||||
bool p3_gpio_work_mode; // Expander GPIO P3 work mode. True for input, false for output.
|
||||
bool p4_gpio_work_mode; // Expander GPIO P4 work mode. True for input, false for output.
|
||||
bool p5_gpio_work_mode; // Expander GPIO P5 work mode. True for input, false for output.
|
||||
bool p6_gpio_work_mode; // Expander GPIO P6 work mode. True for input, false for output.
|
||||
bool p7_gpio_work_mode; // Expander GPIO P7 work mode. True for input, false for output.
|
||||
uint8_t interrupt_gpio; // Interrupt GPIO. @attention Must be same for all PCF8574 expanders.
|
||||
bool i2c_port; // I2C port. @attention Must be same for all PCF8574 expanders.
|
||||
uint8_t task_priority; /*!< Task priority for the PCF8574 expander isr processing. @note It is not recommended to set a value less than 10. */
|
||||
uint16_t stack_size; /*!< Stack size for task for the PCF8574 expander isr processing processing. @note The minimum size is 2048 bytes. */
|
||||
uint8_t i2c_address; /*!< Expander I2C address. */
|
||||
bool p0_gpio_work_mode; /*!< Expander GPIO PO work mode. True for input, false for output. */
|
||||
bool p1_gpio_work_mode; /*!< Expander GPIO P1 work mode. True for input, false for output. */
|
||||
bool p2_gpio_work_mode; /*!< Expander GPIO P2 work mode. True for input, false for output. */
|
||||
bool p3_gpio_work_mode; /*!< Expander GPIO P3 work mode. True for input, false for output. */
|
||||
bool p4_gpio_work_mode; /*!< Expander GPIO P4 work mode. True for input, false for output. */
|
||||
bool p5_gpio_work_mode; /*!< Expander GPIO P5 work mode. True for input, false for output. */
|
||||
bool p6_gpio_work_mode; /*!< Expander GPIO P6 work mode. True for input, false for output. */
|
||||
bool p7_gpio_work_mode; /*!< Expander GPIO P7 work mode. True for input, false for output. */
|
||||
uint8_t interrupt_gpio; /*!< Interrupt GPIO. @attention Must be same for all PCF8574 expanders. */
|
||||
bool i2c_port; /*!< I2C port. @attention Must be same for all PCF8574 expanders. */
|
||||
#ifndef CONFIG_IDF_TARGET_ESP8266
|
||||
i2c_master_bus_handle_t i2c_handle; // Unique I2C bus handle. @attention Must be same for all PCF8574 expanders.
|
||||
i2c_master_bus_handle_t i2c_handle; /*!< Unique I2C bus handle. @attention Must be same for all PCF8574 expanders. */
|
||||
#endif
|
||||
} zh_pcf8574_init_config_t;
|
||||
|
||||
typedef struct // PCF8574 expander handle.
|
||||
/**
|
||||
* @brief PCF8574 expander handle.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
uint8_t i2c_address; // Expander I2C address.
|
||||
uint8_t gpio_work_mode; // Expander GPIO's work mode.
|
||||
uint8_t gpio_status; // Expander GPIO's status.
|
||||
bool is_initialized; // Expander initialization flag.
|
||||
bool i2c_port; // I2C port.
|
||||
uint8_t i2c_address; /*!< Expander I2C address. */
|
||||
uint8_t gpio_work_mode; /*!< Expander GPIO's work mode. */
|
||||
uint8_t gpio_status; /*!< Expander GPIO's status. */
|
||||
bool is_initialized; /*!< Expander initialization flag. */
|
||||
bool i2c_port; /*!< I2C port. */
|
||||
#ifndef CONFIG_IDF_TARGET_ESP8266
|
||||
i2c_master_bus_handle_t i2c_handle; // Unique I2C bus handle.
|
||||
i2c_master_dev_handle_t dev_handle; // Unique I2C device handle.
|
||||
i2c_master_bus_handle_t i2c_handle; /*!< Unique I2C bus handle. */
|
||||
i2c_master_dev_handle_t dev_handle; /*!< Unique I2C device handle. */
|
||||
#endif
|
||||
void *system; // System pointer for use in another components.
|
||||
void *system; /*!< System pointer for use in another components. */
|
||||
} zh_pcf8574_handle_t;
|
||||
|
||||
ESP_EVENT_DECLARE_BASE(ZH_PCF8574);
|
||||
|
||||
typedef struct // Structure for sending data to the event handler when cause an interrupt. @note Should be used with ZH_PCF8574W event base.
|
||||
/**
|
||||
* @brief Structure for sending data to the event handler when cause an interrupt.
|
||||
*
|
||||
* @note Should be used with ZH_PCF8574 event base.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
uint8_t i2c_address; // The i2c address of PCF8574 expander that caused the interrupt.
|
||||
uint8_t gpio_number; // The GPIO that caused the interrupt.
|
||||
uint8_t i2c_address; /*!< The i2c address of PCF8574 expander that caused the interrupt. */
|
||||
uint8_t gpio_number; /*!< The GPIO that caused the interrupt. */
|
||||
bool gpio_level; /*!< The GPIO level that caused the interrupt. */
|
||||
} zh_pcf8574_event_on_isr_t;
|
||||
|
||||
/**
|
||||
|
||||
@@ -1 +1 @@
|
||||
1.2.0
|
||||
1.3.1
|
||||
14
zh_pcf8574.c
14
zh_pcf8574.c
@@ -223,8 +223,9 @@ static void IRAM_ATTR _zh_pcf8574_isr_processing_task(void *pvParameter)
|
||||
zh_pcf8574_event_on_isr_t event = {0};
|
||||
event.i2c_address = handle->i2c_address;
|
||||
event.gpio_number = 0xFF;
|
||||
uint8_t reg_temp = 0;
|
||||
esp_err_t err = _zh_pcf8574_read_register(handle, ®_temp);
|
||||
uint8_t old_reg = handle->gpio_status;
|
||||
uint8_t new_reg = 0;
|
||||
esp_err_t err = _zh_pcf8574_read_register(handle, &new_reg);
|
||||
if (err != ESP_OK)
|
||||
{
|
||||
ZH_PCF8574_LOGE_ERR("PCF8574 isr processing failed. Failed to read expander register.", err);
|
||||
@@ -232,10 +233,13 @@ static void IRAM_ATTR _zh_pcf8574_isr_processing_task(void *pvParameter)
|
||||
}
|
||||
for (uint8_t j = 0; j <= 7; ++j)
|
||||
{
|
||||
if (((handle->gpio_work_mode & _gpio_matrix[j]) != 0) && ((reg_temp & _gpio_matrix[j]) == 0))
|
||||
if ((handle->gpio_work_mode & _gpio_matrix[j]) != 0)
|
||||
{
|
||||
event.gpio_number = j;
|
||||
break;
|
||||
if ((old_reg & _gpio_matrix[j]) != (new_reg & _gpio_matrix[j]))
|
||||
{
|
||||
event.gpio_number = j;
|
||||
event.gpio_level = new_reg & _gpio_matrix[j];
|
||||
}
|
||||
}
|
||||
}
|
||||
if (event.gpio_number != 0xFF)
|
||||
|
||||
Reference in New Issue
Block a user