I have error in boot log ESP32 at initialization VS1053:
Unable to write SCI_STATUS
As i understand i have some hardware failure (the chip is not correctly powered up, not correctly connected and so on) and VS1053 register STATUS is 0x000 or 0xFFFF

Please help me to find an error in the VS1053 wiring diagram.
Part code of VS1053 library for ESP32:
Code: Select all
voidAudio::setVUmeter() {
if(!VS_PATCH_ENABLE) return;
uint16_t MP3Status = read_register(SCI_STATUS);
if(MP3Status==0) {
Serial.println("VS1053 Error: Unable to write SCI_STATUS");
_vuInitalized = false;
return;
}
_vuInitalized = true;
write_register(SCI_STATUS, MP3Status | _BV(9));
}