File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -394,10 +394,10 @@ class DriverPins {
394
394
bool hasPins () { return !pins.empty (); }
395
395
396
396
protected:
397
- Vector<PinsI2S> i2s{0 };
398
- Vector<PinsSPI> spi{0 };
399
- Vector<PinsI2C> i2c{0 };
400
- Vector<PinsFunction> pins{0 };
397
+ audio_driver_local:: Vector<PinsI2S> i2s{0 };
398
+ audio_driver_local:: Vector<PinsSPI> spi{0 };
399
+ audio_driver_local:: Vector<PinsI2C> i2c{0 };
400
+ audio_driver_local:: Vector<PinsFunction> pins{0 };
401
401
bool sd_active = true ;
402
402
403
403
template <typename T>
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
3
- namespace audio_driver {
3
+ namespace audio_driver_local {
4
4
5
5
/* *
6
6
* @brief A simple optonal implementation
Original file line number Diff line number Diff line change 4
4
#endif
5
5
#include < assert.h>
6
6
7
- namespace audio_driver {
7
+ namespace audio_driver_local {
8
8
9
9
/* *
10
10
* @brief Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy
You can’t perform that action at this time.
0 commit comments