Thanks. I'm not sure what's going on. It looks like the _flash_read is returning ESP_FAIL although I'm not sure as I would be expecting to see a log statement. Not sure why you don't see these.
If _flash_read fails, it _may_ be because you have problem with the generation of audio-esp.bin and the ...
Search found 4 matches
- Wed Apr 08, 2020 10:44 pm
- Forum: ESP-ADF
- Topic: loop from flash
- Replies: 6
- Views: 10782
- Sun Apr 05, 2020 9:26 pm
- Forum: ESP-ADF
- Topic: loop from flash
- Replies: 6
- Views: 10782
Re: loop from flash
Can you share the code changes you're making so I can have a look at what's happening?
- Thu Apr 02, 2020 8:40 pm
- Forum: ESP-ADF
- Topic: samples fail to build
- Replies: 2
- Views: 7528
Re: samples fail to build
Which version of esp-idf are you using?
- Thu Apr 02, 2020 8:27 pm
- Forum: ESP-ADF
- Topic: loop from flash
- Replies: 6
- Views: 10782
Re: loop from flash
Hi audiophil.
It would help if you post the code you've changed. I just had a look, and was able to loop successfully by making this change:
Modify tone_stream.c at line 196, from:
if (info.byte_pos + len > info.total_bytes) {
len = info.total_bytes - info.byte_pos;
}
to:
if (info.byte ...
It would help if you post the code you've changed. I just had a look, and was able to loop successfully by making this change:
Modify tone_stream.c at line 196, from:
if (info.byte_pos + len > info.total_bytes) {
len = info.total_bytes - info.byte_pos;
}
to:
if (info.byte ...