From 33392af3156ab2e30e398e04237443726cc52a8e Mon Sep 17 00:00:00 2001 From: lbernstone Date: Tue, 19 Jun 2018 02:33:17 -0600 Subject: [PATCH] Missing include gpio.h in esp32-hal-dac.h (#1512) --- 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 fdb21628..47b22658 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);