From 19ab98c96b223a943fa5a89f0b64aed83c4c17a0 Mon Sep 17 00:00:00 2001 From: Larry Bernstone Date: Mon, 18 Jun 2018 11:41:40 -0600 Subject: [PATCH] Missing include gpio.h in esp32-hal-dac.h --- cores/esp32/esp32-hal-dac.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cores/esp32/esp32-hal-dac.h b/cores/esp32/esp32-hal-dac.h index fdb21628d1c..47b2265800f 100644 --- a/cores/esp32/esp32-hal-dac.h +++ b/cores/esp32/esp32-hal-dac.h @@ -25,6 +25,7 @@ extern "C" { #endif #include "esp32-hal.h" +#include "driver/gpio.h" void dacWrite(uint8_t pin, uint8_t value);