Skip to content

Commit

Permalink
I2S ESP32 Driver in Doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Oct 19, 2023
1 parent 190fdc0 commit 200c765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AudioI2S/I2SESP32.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "AudioConfig.h"
#if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 0 , 0)
#if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 0 , 0) || defined(DOXYGEN)

#include "AudioI2S/I2SConfig.h"
#include "driver/i2s.h"
Expand Down
2 changes: 1 addition & 1 deletion src/AudioI2S/I2SESP32V1.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "AudioConfig.h"
#if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0)
#if defined(ESP32) && defined(USE_I2S) && ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 0, 0) || defined(DOXYGEN)

#include "AudioI2S/I2SConfig.h"
#include "driver/i2s_pdm.h"
Expand Down

0 comments on commit 200c765

Please sign in to comment.