File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2217,7 +2217,7 @@ INCLUDE_FILE_PATTERNS =
2217
2217
# recursively expanded use the := operator instead of the = operator.
2218
2218
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
2219
2219
2220
- PREDEFINED = DOXYGEN IS_DESKTOP ESP32 ESP8266 ARDUINO_ARCH_MBED_RP2040 ARDUINO_ARCH_RP2040 __AVR__ STM32 ARDUINO_ARCH_SAMD USE_URL_ARDUINO
2220
+ PREDEFINED = DOXYGEN IS_DESKTOP ESP32 ESP8266 ARDUINO_ARCH_MBED_RP2040 ARDUINO_ARCH_RP2040 __AVR__ STM32 ARDUINO_ARCH_SAMD USE_URL_ARDUINO USE_TIMER USE_I2S_ANALOG USE_I2S USE_PWM
2221
2221
2222
2222
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
2223
2223
# tag can be used to specify a list of macro names that should be expanded. The
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
#include " AudioConfig.h"
3
- #if defined(USE_I2S_ANALOG) || defined(DOXYGEN)
3
+ #if defined(USE_I2S_ANALOG)
4
4
#include " AudioAnalog/AnalogAudioBase.h"
5
5
#include " AudioAnalog/AnalogAudioESP32.h"
6
6
#include " AudioAnalog/AnalogAudioArduino.h"
Original file line number Diff line number Diff line change 4
4
#pragma once
5
5
#include " AudioConfig.h"
6
6
7
- #if defined(USE_I2S) || defined(DOXYGEN)
7
+ #if defined(USE_I2S)
8
8
#include " AudioTools/AudioTypes.h"
9
9
#include " AudioTools/AudioStreams.h"
10
10
#include " AudioI2S/I2SConfig.h"
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
#include " AudioConfig.h"
3
- #if defined(USE_PWM) || defined(DOXYGEN)
3
+ #if defined(USE_PWM)
4
4
5
5
#include " AudioPWM/PWMAudioESP32.h"
6
6
#include " AudioPWM/PWMAudioRP2040.h"
Original file line number Diff line number Diff line change 5
5
* @brief Platform specific timers
6
6
*/
7
7
#include " AudioConfig.h"
8
- #if defined(USE_TIMER) || defined(DOXYGEN)
8
+ #if defined(USE_TIMER)
9
9
#include " AudioTools/AudioLogger.h"
10
10
#include " AudioTimer/AudioTimerBase.h"
11
11
#include " AudioTimer/AudioTimerESP32.h"
You can’t perform that action at this time.
0 commit comments