Unverified Commit 4c90b295 authored by LinusHeu's avatar LinusHeu Committed by GitHub

Fix: 'I2S::operator=(const I2S&)' is implicitly (#1588)

parent 43aa0427
......@@ -146,6 +146,6 @@ private:
PIO _pio, _pioMCLK;
int _sm, _smMCLK;
const int I2SSYSCLK_44_1 = 135600; // 44.1, 88.2 kHz sample rates
const int I2SSYSCLK_8 = 147600; // 8k, 16, 32, 48, 96, 192 kHz
static const int I2SSYSCLK_44_1 = 135600; // 44.1, 88.2 kHz sample rates
static const int I2SSYSCLK_8 = 147600; // 8k, 16, 32, 48, 96, 192 kHz
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment