We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71197f commit d8c8d02Copy full SHA for d8c8d02
drivers/input/input_esp32_touch_sensor.c
@@ -10,6 +10,7 @@
10
#include <zephyr/input/input.h>
11
#include <zephyr/kernel.h>
12
#include <zephyr/logging/log.h>
13
+#include <zephyr/drivers/interrupt_controller/intc_esp32.h>
14
15
#include <esp_err.h>
16
#include <soc/soc_pins.h>
@@ -80,7 +81,6 @@ struct esp32_touch_sensor_data {
80
81
static void esp32_touch_sensor_interrupt_cb(void *arg)
82
{
83
const struct device *dev = arg;
- struct esp32_touch_sensor_data *dev_data = dev->data;
84
const struct esp32_touch_sensor_config *dev_cfg = dev->config;
85
const struct esp32_touch_sensor_channel_config *channel_cfg;
86
const int num_channels = dev_cfg->num_channels;
0 commit comments