Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/input/input_esp32_touch_sensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <zephyr/input/input.h>
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
#include <zephyr/drivers/interrupt_controller/intc_esp32.h>

#include <esp_err.h>
#include <soc/soc_pins.h>
Expand Down Expand Up @@ -80,7 +81,6 @@ struct esp32_touch_sensor_data {
static void esp32_touch_sensor_interrupt_cb(void *arg)
{
const struct device *dev = arg;
struct esp32_touch_sensor_data *dev_data = dev->data;
const struct esp32_touch_sensor_config *dev_cfg = dev->config;
const struct esp32_touch_sensor_channel_config *channel_cfg;
const int num_channels = dev_cfg->num_channels;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONFIG_INPUT_ESP32_TOUCH_SENSOR=y
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONFIG_INPUT_ESP32_TOUCH_SENSOR=y
1 change: 1 addition & 0 deletions samples/subsys/input/input_dump/boards/esp32s2_saola.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONFIG_INPUT_ESP32_TOUCH_SENSOR=y
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CONFIG_INPUT_ESP32_TOUCH_SENSOR=y
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ manifest:
groups:
- hal
- name: hal_espressif
revision: 5e7220b429caa5d374286b3a3122c5d303c5f78a
revision: 09676fc39bde2c38d6cd40912875cf78ee76126e
path: modules/hal/espressif
west-commands: west/west-commands.yml
groups:
Expand Down
Loading