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 2b1dec1 commit 98def08Copy full SHA for 98def08
src/VS1053Driver.cpp
@@ -116,9 +116,10 @@ bool VS1053::testComm(const char *header) {
116
int i; // Loop control
117
uint16_t r1, r2, cnt = 0;
118
uint16_t delta = 300; // 3 for fast SPI
119
+ delay(100);
120
121
if (!digitalRead(dreq_pin)) {
- VS1053_LOGE("VS1053 not properly installed!");
122
+ VS1053_LOGW("VS1053 not properly installed!");
123
// Allow testing without the VS1053 module
124
pinMode(dreq_pin, INPUT_PULLUP); // DREQ is now input with pull-up
125
return false; // Return bad result
0 commit comments