Search found 262 matches
- Tue Oct 22, 2019 8:55 pm
- Forum: ESP-IDF
- Topic: ESP-IDF Eclipse Plugin C++ Unresolved Includes
- Replies: 3
- Views: 1941
Re: ESP-IDF Eclipse Plugin C++ Unresolved Includes
Found the solution: https://stackoverflow.com/a/50491999/58962
- Sat Oct 05, 2019 6:23 pm
- Forum: ESP-IDF
- Topic: ESP-IDF Eclipse Plugin C++ Unresolved Includes
- Replies: 3
- Views: 1941
Re: ESP-IDF Eclipse Plugin C++ Unresolved Includes
Most include issues can be fixed by running but then the build is broken.
Code: Select all
cmake -G "Eclipse CDT4 - Unix Makefiles"
- Sat Oct 05, 2019 5:45 pm
- Forum: ESP-IDF
- Topic: ESP-IDF Eclipse Plugin C++ Unresolved Includes
- Replies: 3
- Views: 1941
Re: ESP-IDF Eclipse Plugin C++ Unresolved Includes
I got a similar issue, but on macOS. This resolves: but this doesn't
Code: Select all
#include <stdio.h>
Code: Select all
#include "esp_system.h"
- Tue Sep 03, 2019 8:21 pm
- Forum: ESP-IDF
- Topic: A2DP RAW SBC Receive
- Replies: 0
- Views: 877
A2DP RAW SBC Receive
As far as I can see there is only a way to receive decoded PCM samples in the A2DP sink example. Is there a way to receive the raw SBC payload instead?
- Thu Jun 13, 2019 1:19 pm
- Forum: Showcase
- Topic: ESP32 Webradio
- Replies: 185
- Views: 178629
Re: ESP32 Webradio
> But all at once in one project?
The BiQuad filter will use the most CPU, but its possible. Jakobsen knows about this. I'm not 100% knwoleadable here, but running a SPI display shouldn't use that many resources either. You can look at microwavemont's fork for that.
The BiQuad filter will use the most CPU, but its possible. Jakobsen knows about this. I'm not 100% knwoleadable here, but running a SPI display shouldn't use that many resources either. You can look at microwavemont's fork for that.
- Thu Jun 13, 2019 12:04 pm
- Forum: Showcase
- Topic: ESP32 Webradio
- Replies: 185
- Views: 178629
Re: ESP32 Webradio
All of those things have been done, so they are possible. With PSRAM you should have no issues with buffer underruns.
- Tue Mar 12, 2019 8:56 am
- Forum: ESP-IDF
- Topic: I2S microphone (RX)
- Replies: 56
- Views: 56446
Re: I2S microphone (RX)
Sorry no, I don't have a Lyra.
- Fri Jul 20, 2018 11:39 am
- Forum: ESP-ADF
- Topic: ESP-ADF Acoustic Echo Cancellation
- Replies: 4
- Views: 4512
Re: ESP-ADF Acoustic Echo Cancellation
Nice, this will be a useful component!
- Fri Jul 20, 2018 11:38 am
- Forum: General Discussion
- Topic: streaming music from an Android phone via ESP32 to AUX IN
- Replies: 14
- Views: 19188
Re: streaming music from an Android phone via ESP32 to AUX IN
This has a bluetooth mode out of the box, I'm having it hooked up to an amp right now: https://github.com/MrBuddyCasino/ESP32_MP3_Decoder
- Thu Jul 19, 2018 11:01 am
- Forum: ESP-ADF
- Topic: ESP-ADF Acoustic Echo Cancellation
- Replies: 4
- Views: 4512
Re: ESP-ADF Acoustic Echo Cancellation
In case there will be nothing but crickets: the Chromium source contains a C++ echo canceller for WebRTC that is supposed to be good. I don't know if its suitable for embedded usage though.