Search found 6 matches

by M-Schiller
Wed Jan 04, 2023 1:27 pm
Forum: ESP-ADF
Topic: A2DP sink volume cap
Replies: 2
Views: 3500

Re: A2DP sink volume cap

Can anyone at Espressif give any hints on what to look for? I've now observed the same behavior while controlling an ESP32 and don't know where to even begin to look for fixes.
by M-Schiller
Thu Nov 10, 2022 9:00 am
Forum: ESP-IDF
Topic: How do I use flash encryption and non-OTA updates?
Replies: 5
Views: 2458

Re: How do I use flash encryption and non-OTA updates?

Thanks for your response, do you perhaps have any course of actions in regards to the eFuses? I have burned my key already, however will I need to change anything here? I've been hesitant to flash an encrypting BL because I don't want to brick my device. ---------------------------------------- Exce...
by M-Schiller
Tue Nov 08, 2022 8:00 am
Forum: ESP-IDF
Topic: How do I use flash encryption and non-OTA updates?
Replies: 5
Views: 2458

How do I use flash encryption and non-OTA updates?

Hi everyone, I am trying to understand flash encryption ( https://docs.espressif.com/projects/esp-idf/en/latest/esp32/security/flash-encryption.html ) and would like to get some help in regards to whether my thoughts make sense and can be achieved somehow. What I'm trying to achieve: Make it impossi...
by M-Schiller
Wed Aug 17, 2022 2:45 pm
Forum: ESP-ADF
Topic: Downmix BT stream from stereo to mono
Replies: 5
Views: 5428

Re: Downmix BT stream from stereo to mono

Thank you for your replies, tempo.tian. With your hints I got it to work the hacky way . However, I'd prefer not to change code in the framework and use an `audio_element` to down-mix. Do you know which callback functions in `audio_element` are required to implement? This is the code I have so far.....
by M-Schiller
Tue Aug 16, 2022 11:40 am
Forum: ESP-ADF
Topic: Downmix BT stream from stereo to mono
Replies: 5
Views: 5428

Re: Downmix BT stream from stereo to mono

Thank you for your replies, tempo.tian. I still have a few questions regarding the implementation, though: Can you explain to me why the change in audio_element_set_ringbuf_done is necessary? It seems like you are disabling the check for the write_type here... When doing // after pipeline is linked,...
by M-Schiller
Wed Aug 10, 2022 11:04 am
Forum: ESP-ADF
Topic: Downmix BT stream from stereo to mono
Replies: 5
Views: 5428

Downmix BT stream from stereo to mono

Hi everyone, I am currently working with the LyraT eval board and try to understand audio pipelines. I want to receive an audio stream via Bluetooth, downmix stereo to mono, and sent it via I2S to one of the codec chips. For this reason, I tried to expand the "play_bt_music_example" with the "downmi...