Remove references to AC101 mic mode (not implemented)

This commit is contained in:
Troy
2024-07-10 19:08:58 -04:00
parent f7e2f14ca4
commit 1c33a4bbea

View File

@@ -2013,11 +2013,7 @@ class AudioReactive : public Usermod {
if (audioSource) audioSource->initialize(i2swsPin, i2ssdPin, i2sckPin, mclkPin); if (audioSource) audioSource->initialize(i2swsPin, i2ssdPin, i2sckPin, mclkPin);
break; break;
case 8: case 8:
#ifdef use_ac101_mic
DEBUGSR_PRINTLN(F("AR: AC101 Source (Mic)"));
#else
DEBUGSR_PRINTLN(F("AR: AC101 Source (Line-In)")); DEBUGSR_PRINTLN(F("AR: AC101 Source (Line-In)"));
#endif
audioSource = new AC101Source(SAMPLE_RATE, BLOCK_SIZE, 1.0f); audioSource = new AC101Source(SAMPLE_RATE, BLOCK_SIZE, 1.0f);
//useInputFilter = 0; // to disable low-cut software filtering and restore previous behaviour //useInputFilter = 0; // to disable low-cut software filtering and restore previous behaviour
delay(100); delay(100);