File tree Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,9 @@ esp32:esp32:esp32 ./examples-stream/streams-generator-serial -> rc=0
2
2
esp32:esp32:esp32c3 ./examples-stream/streams-generator-serial -> rc=0
3
3
esp32:esp32:esp32s3 ./examples-stream/streams-generator-serial -> rc=0
4
4
esp32:esp32:esp32s2 ./examples-stream/streams-generator-serial -> rc=0
5
+ esp32:esp32:esp32c6 ./examples-stream/streams-generator-serial -> rc=0
6
+ esp8266:esp8266:generic ./examples-stream/streams-generator-serial -> rc=0
7
+ rp2040:rp2040:generic ./examples-stream/streams-generator-serial -> rc=0
8
+ arduino:avr:nano ./examples-stream/streams-generator-serial -> rc=0
9
+ arduino:samd:arduino_zero_native ./examples-stream/streams-generator-serial -> rc=0
10
+ arduino:renesas_uno:unor4wifi ./examples-stream/streams-generator-serial -> rc=1
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
#include " AudioConfig.h"
3
- #if defined(USE_ANALOG)
4
- #include " AudioAnalog/AnalogDriverBase.h"
5
- #include " AudioAnalog/AnalogDriverESP32V1.h"
6
- #include " AudioAnalog/AnalogDriverESP32.h"
7
- #include " AudioAnalog/AnalogDriverMBED.h"
8
3
9
- #if defined(USE_ANALOG_ARDUINO) || defined(DOXYGEN)
4
+ // Support AnalogAudioStream
5
+ #if defined(USE_ANALOG)
6
+ # include " AudioAnalog/AnalogDriverBase.h"
7
+ # include " AudioAnalog/AnalogDriverESP32V1.h"
8
+ # include " AudioAnalog/AnalogDriverESP32.h"
9
+ # include " AudioAnalog/AnalogDriverMBED.h"
10
10
# include " AudioAnalog/AnalogDriverArduino.h"
11
- #endif
12
11
13
12
namespace audio_tools {
14
13
@@ -109,4 +108,9 @@ class AnalogAudioStream : public AudioStream {
109
108
110
109
}
111
110
112
- #endif
111
+ #endif
112
+
113
+ // Support AnalogAudioArduino
114
+ #if defined(USE_TIMER)
115
+ # include " AudioAnalog/AnalogAudioArduino.h"
116
+ #endif
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
3
- #include < limits.h> // for INT_MIN and INT_MAX
3
+ #include " AudioConfig.h"
4
+ #if defined(USE_ANALOG_ARDUINO) || defined(DOXYGEN)
4
5
6
+ #include < limits.h> // for INT_MIN and INT_MAX
5
7
#include " AudioAnalog/AnalogAudioBase.h"
6
- #include " AudioConfig.h"
7
8
#include " AudioTimer/AudioTimer.h"
8
9
#include " AudioTools/AudioStreams.h"
9
10
#include " AudioTools/AudioTypes.h"
@@ -47,3 +48,5 @@ class AnalogDriverArduino : public AnalogDriverBase {
47
48
using AnalogDriver = AnalogDriverArduino;
48
49
49
50
} // namespace audio_tools
51
+
52
+ #endif
You can’t perform that action at this time.
0 commit comments