From dd712db323a7fc2810828753b948f0641892091c Mon Sep 17 00:00:00 2001 From: Sly Gryphon Date: Sat, 20 Jan 2024 01:23:56 +1000 Subject: [PATCH] fix(ledc): Add missing include for SemaphoreHandle_t (#9133) (#9134) --- cores/esp32/esp32-hal-ledc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cores/esp32/esp32-hal-ledc.h b/cores/esp32/esp32-hal-ledc.h index c81da6dced2..2d2c42e9369 100644 --- a/cores/esp32/esp32-hal-ledc.h +++ b/cores/esp32/esp32-hal-ledc.h @@ -24,6 +24,8 @@ extern "C" { #include #include +#include "freertos/FreeRTOS.h" +#include "freertos/semphr.h" typedef enum { NOTE_C, NOTE_Cs, NOTE_D, NOTE_Eb, NOTE_E, NOTE_F, NOTE_Fs, NOTE_G, NOTE_Gs, NOTE_A, NOTE_Bb, NOTE_B, NOTE_MAX