From 30c9a87911f4056635a69f3f1b0dff4504f1868b Mon Sep 17 00:00:00 2001 From: Stefan de Bruijn Date: Tue, 3 Aug 2021 10:34:11 +0200 Subject: [PATCH] Missed an include. Fixed. --- Grbl_Esp32/src/PinUsers/PwmPin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/PinUsers/PwmPin.cpp b/Grbl_Esp32/src/PinUsers/PwmPin.cpp index 666ecfe7..0388d73b 100644 --- a/Grbl_Esp32/src/PinUsers/PwmPin.cpp +++ b/Grbl_Esp32/src/PinUsers/PwmPin.cpp @@ -18,7 +18,7 @@ #include "PwmPin.h" -#include "../Pins/Ledc.h" +#include "../Pins/LedcPin.h" #include "../Pin.h" #include "../Assert.h"