Skip to content

Commit b3fcef0

Browse files
committed
Compile errors
1 parent 0010c02 commit b3fcef0

File tree

6 files changed

+4
-15
lines changed

6 files changed

+4
-15
lines changed

sandbox/ads1015-a2dp/ads1015-a2dp.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
#include "Wire.h"
77
#include "Adafruit_ADS1015.h"
88
#include "BluetoothA2DPSource.h"
9-
#include "Buffer.h"
10-
#include "TimerAlarmRepeating.h"
9+
#include "SoundTools.h"
1110

1211
const int buffer_size = 512;
1312
const int buffer_count = 10;

sandbox/file_aac-a2dp/file_raw-a2dp.ino

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11

22
#include "SoundTools.h"
3-
#ifndef A2DP
4-
#error You need to install the A2DP Library
5-
#endif
6-
73
#include "BluetoothA2DPSource.h"
84
#include <SPI.h>
95
#include <SD.h>

sandbox/test-sampling-rate/test-sampling-rate.ino

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
* Test sampling rate
33
*/
44

5-
#include "SoundGenerator.h"
6-
#include "TimerAlarmRepeating.h"
7-
#include "Notes.h"
5+
#include "SoundTools.h"
86

97
unsigned long count;
108
unsigned long start;

sandbox/test-sin/test-sin.ino

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
* Generate a sine wave to test the TimerAlarmRepeating and UpSampler
33
*/
44

5-
#include "SoundGenerator.h"
6-
#include "TimerAlarmRepeating.h"
7-
#include "Buffer.h"
5+
#include "SoundTools.h"
86

97
const int sample_rate = 44100;
108
const int buffer_size = 512;

sandbox/wav_decode/wav_decode.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#include "AudioWAV.h"
2-
#include "AudioTools.h"
3-
#include "AudioToolsESP32.h"
2+
#include "SoundTools.h"
43

54
I2S i2s; // I2S output destination
65
WAVDecoder decoder(i2s);

src/SoundTools/Converter.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#pragma once
2-
#include "Config.h"
32
#include "SoundTypes.h"
43
#include "BluetoothA2DPSource.h"
54

0 commit comments

Comments
 (0)