fix(ledc): Add missing include for SemaphoreHandle_t (#9133) (#9134)

This commit is contained in:
Sly Gryphon 2024-01-20 01:23:56 +10:00 committed by GitHub
parent f7cf59f7dc
commit dd712db323
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,6 +24,8 @@ extern "C" {
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
typedef enum { 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 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