Skip to content

Commit

Permalink
fix(ledc): Add missing include for SemaphoreHandle_t (#9133) (#9134)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgryphon authored Jan 19, 2024
1 parent f7cf59f commit dd712db
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cores/esp32/esp32-hal-ledc.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ extern "C" {

#include <stdint.h>
#include <stdbool.h>
#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
Expand Down

0 comments on commit dd712db

Please sign in to comment.