Skip to content

Commit 4c90b29

Browse files
authored
Fix: 'I2S::operator=(const I2S&)' is implicitly (#1588)
1 parent 43aa042 commit 4c90b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/I2S/src/I2S.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,6 @@ class I2S : public Stream {
146146
PIO _pio, _pioMCLK;
147147
int _sm, _smMCLK;
148148

149-
const int I2SSYSCLK_44_1 = 135600; // 44.1, 88.2 kHz sample rates
150-
const int I2SSYSCLK_8 = 147600; // 8k, 16, 32, 48, 96, 192 kHz
149+
static const int I2SSYSCLK_44_1 = 135600; // 44.1, 88.2 kHz sample rates
150+
static const int I2SSYSCLK_8 = 147600; // 8k, 16, 32, 48, 96, 192 kHz
151151
};

0 commit comments

Comments
 (0)