We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca5fe6 commit d4b1436Copy full SHA for d4b1436
src/AudioConfig.h
@@ -430,6 +430,7 @@ typedef uint32_t eps32_i2s_sample_rate_type;
430
431
//------ VS1053 ----------
432
433
+// Default Pins for VS1053
434
#define VS1053_CS 27
435
#define VS1053_DCS 14
436
#define VS1053_DREQ 26
src/AudioLibs/VS1053Stream.h
@@ -1,8 +1,12 @@
1
#pragma once
2
3
#include "AudioTools/AudioStreams.h"
4
-#include "VS1053.h"
5
#include "AudioCodecs/CodecCopy.h"
+#if VS1053_EXT
6
+# include "VS1053Driver.h"
7
+#else
8
+# include "VS1053.h"
9
+#endif
10
11
namespace audio_tools {
12
0 commit comments