We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9038d6 commit e7fdea9Copy full SHA for e7fdea9
src/Driver.h
@@ -89,6 +89,7 @@ class CodecConfig : public codec_config_t {
89
i2s.bits = BIT_LENGTH_32BITS;
90
return true;
91
}
92
+ AD_LOGE("bits not supported: %d", bits);
93
return false;
94
95
@@ -119,6 +120,7 @@ class CodecConfig : public codec_config_t {
119
120
i2s.channels = (channels_t)channels;
121
122
default:
123
+ AD_LOGE("Channels not supported: %d - using %d", channels,2);
124
i2s.channels = CHANNELS2;
125
126
0 commit comments