File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ class AnalogDriverArduino : public AnalogDriverBase {
73
73
74
74
// blocking write ?
75
75
if (config.is_blocking_write ) {
76
- LOGD (" Waiting for buffer to clear " );
76
+ LOGD (" Waiting for buffer to be available " );
77
77
while (buffer->availableForWrite () == 0 ) {
78
78
delay (10 );
79
79
}
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ class A2DPStream : public AudioStream {
194
194
if (config.mode ==TX_MODE){
195
195
// if buffer is full and we are still not connected, we wait
196
196
while (len > a2dp_buffer.availableForWrite ()){
197
- LOGI ( " waiting for buffer to be consumed... " )
197
+ LOGD ( " Waiting for buffer to be available " );
198
198
delay (200 );
199
199
if (config.startLogic ==StartWhenBufferFull){
200
200
is_a2dp_active = true ;
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ class DriverPWMBase {
156
156
// blocking write for an array: we expect a singed value and convert it into a unsigned
157
157
virtual size_t write (const uint8_t *wrt_buffer, size_t size){
158
158
if (is_blocking_write && availableForWrite ()==0 ){
159
- LOGD (" Waiting for buffer to clear " );
159
+ LOGD (" Waiting for buffer to be available " );
160
160
while (availableForWrite ()==0 ) delay (5 );
161
161
}
162
162
You can’t perform that action at this time.
0 commit comments