Skip to content

Commit 204aba2

Browse files
committed
Rename AudioDriverConfig.h to ConfigAudioDriver.h
1 parent 6b2c9eb commit 204aba2

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The functionality has a built in logger. The default log level has been set to W
5353
```
5454
Valid values are: Debug, Info, Warning, Error
5555

56-
You can deactivate the logging completly and if you are using an ESP32, you can configure the use of the built in ESP32 IDF logger in AudioDriverConfig.h
56+
You can deactivate the logging completly and if you are using an ESP32, you can configure the use of the built in ESP32 IDF logger in ConfigAudioDriver.h
5757

5858
## Documentation
5959

File renamed without changes.

src/DriverCommon.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
#include <stdint.h>
33

4-
#include "AudioDriverConfig.h"
4+
#include "ConfigAudioDriver.h"
55
#include "Platforms/Logger.h"
66

77
/*!

src/Platforms/AudioDriverLogger.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
#pragma once
3-
#include "AudioDriverConfig.h"
3+
#include "ConfigAudioDriver.h"
44
#if AUDIO_DRIVER_LOGGIN_ACTVIE && !defined(AUDIO_DRIVER_LOGGING_IDF)
55

66
#include "LoggerSTD.h"

src/Platforms/Logger.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "AudioDriverConfig.h"
2+
#include "ConfigAudioDriver.h"
33

44
#if AUDIO_DRIVER_LOGGIN_ACTVIE
55
# if defined(AUDIO_DRIVER_LOGGING_IDF)

src/Platforms/LoggerSTD.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "AudioDriverConfig.h"
1+
#include "ConfigAudioDriver.h"
22
#if AUDIO_DRIVER_LOGGIN_ACTVIE && !defined(AUDIO_DRIVER_LOGGING_IDF)
33
#include "Platforms/LoggerSTD.h"
44
#include "Platforms/etc.h"

src/Platforms/LoggerSTD.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// logging methods that can be called from C and C++
22
#pragma once
3-
#include "AudioDriverConfig.h"
3+
#include "ConfigAudioDriver.h"
44

55
// maximum size of log string
66
#define AD_LOGLENGTH 215

0 commit comments

Comments
 (0)