Skip to content

Commit 663ece1

Browse files
committed
v0.9.340b
1 parent cac9364 commit 663ece1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

yoRadio/src/audioVS1053/audioVS1053Ex.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}
183182
void 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
}
190188
void 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
//---------------------------------------------------------------------------------------------------------------------
205201
uint16_t Audio::read_register(uint8_t _reg)

yoRadio/src/core/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define YOVERSION "0.9.337b"
4+
#define YOVERSION "0.9.340b"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

0 commit comments

Comments
 (0)