File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,9 @@ Work is in progress...
230230
231231---
232232## Version history
233+ #### v0.9.340b
234+ - fixed compilation error audioVS1053Ex.cpp:181:5: error: 'sdog' was not declared in this scope
235+
233236#### v0.9.337b (homeassistant component)
234237- fixed the error of subscribing to mqtt topic on some systems
235238
Original file line number Diff line number Diff line change @@ -178,18 +178,15 @@ void Audio::control_mode_off()
178178{
179179 CS_HIGH (); // End control mode
180180 spi_VS1053->endTransaction (); // Allow other SPI users
181- sdog.giveMutex ();
182181}
183182void Audio::control_mode_on ()
184183{
185- sdog.takeMutex ();
186184 spi_VS1053->beginTransaction (VS1053_SPI_CTL); // Prevent other SPI users
187185 DCS_HIGH (); // Bring slave in control mode
188186 CS_LOW ();
189187}
190188void Audio::data_mode_on ()
191189{
192- sdog.takeMutex ();
193190 spi_VS1053->beginTransaction (VS1053_SPI_DATA); // Prevent other SPI users
194191 CS_HIGH (); // Bring slave in data mode
195192 DCS_LOW ();
@@ -199,7 +196,6 @@ void Audio::data_mode_off()
199196 // digitalWrite(dcs_pin, HIGH); // End data mode
200197 DCS_HIGH ();
201198 spi_VS1053->endTransaction (); // Allow other SPI users
202- sdog.giveMutex ();
203199}
204200// ---------------------------------------------------------------------------------------------------------------------
205201uint16_t Audio::read_register (uint8_t _reg)
Original file line number Diff line number Diff line change 11#ifndef options_h
22#define options_h
33
4- #define YOVERSION "0.9.337b "
4+ #define YOVERSION "0.9.340b "
55
66/*******************************************************
77DO NOT EDIT THIS FILE.
You can’t perform that action at this time.
0 commit comments