Search found 11 matches

by jeeper1974
Tue Mar 21, 2023 3:14 pm
Forum: ESP-IDF
Topic: Enabling Wifi breaks SD Card ability to read
Replies: 3
Views: 1976

Re: Enabling Wifi breaks SD Card ability to read

The power supply is ok. I found today that I can stream data over wifi and save to the SD card over a non-secure HTTP connection. As soon as I switch to a secure HTTPS connection the SD card write fails. My SD card is connected to GPIO2, GPIO4, GPIO12, GPIO13, and GPIO15. Now these are also ADC2 pin...
by jeeper1974
Thu Mar 16, 2023 7:23 am
Forum: ESP-IDF
Topic: Enabling Wifi breaks SD Card ability to read
Replies: 3
Views: 1976

Enabling Wifi breaks SD Card ability to read

ESP-IDF: 4.4.2 When I initialize the wifi and try to read from a SD card I get the following error. diskio_sdmmc: sdmmc_read_blocks failed (257) Without wifi it reads from the sdcard just fine. The SD card will still initialize fine. I (1274) SD_CARD: Initializing SD card I (1278) SD_CARD: Using SDM...
by jeeper1974
Sun Jul 10, 2022 7:44 am
Forum: ESP-IDF
Topic: Error when creating littlefs partition image using littlefs_create_partition_image
Replies: 4
Views: 4082

Re: Error when creating littlefs partition image using littlefs_create_partition_image

I'm running into a similar issue. Did you ever get this working?
Roger
by jeeper1974
Tue Mar 01, 2022 7:24 am
Forum: ESP-IDF
Topic: Bluetooth blocking wifi check?
Replies: 0
Views: 1045

Bluetooth blocking wifi check?

I am currently running the esp32 in dual BT/wifi mode. I've noticed that when the BT is listening for devices I cannot send data over wifi. I know BT and WiFi share the antenna, so it make sense that when one is using the other cannot. Is there a way to check to see if wifi can send data or if it is...
by jeeper1974
Thu Sep 10, 2020 2:35 pm
Forum: ESP-ADF
Topic: Create audio pipeline with output to file and Bluetooth
Replies: 5
Views: 10342

Re: Create audio pipeline with output to file and Bluetooth

For others that may have a similar issue and want to output audio to multiple elements, I found a solution that works. You cannot use the ESP-ADF pipeline. You need to go to the layer below the pipeline function and connect the elements with ringbuffers. This allows one of the elements to use "audio...
by jeeper1974
Wed Sep 09, 2020 6:02 am
Forum: ESP-ADF
Topic: Create audio pipeline with output to file and Bluetooth
Replies: 5
Views: 10342

Create audio pipeline with output to file and Bluetooth

I am trying to setup a audio pipeline that will take input from the microphone(i2s) on a LyraT board and send it to some Bluetooth headphones along with converting it to a WAV and saving it to a file on the SD card. I can make a i2s-WAV-sdcard pipeline work successfully. And I can make a i2s-Bluetoo...
by jeeper1974
Thu Aug 27, 2020 6:11 am
Forum: ESP-ADF
Topic: Parallel output to components in the audio_pipline
Replies: 2
Views: 3557

Re: Parallel output to components in the audio_pipline

I am looking at doing the same type of thing. i2s-->bt a2dp -->wav-->file. Have you found any way to do it? It looks like there can only be one stream writer at a time.
by jeeper1974
Sun Aug 23, 2020 7:10 pm
Forum: ESP-IDF
Topic: A2DP_Source Example Pairing Bug
Replies: 2
Views: 3153

Re: A2DP_Source Example Pairing Bug

Found the issue. I had turned the main function into part of a C++ Class with the other functions remaining in their native C code. Although this did not throw any compile errors, it clearly broke something in how the C++ setup the bluetooth. I switched it back to native C and it works great.
by jeeper1974
Wed Aug 19, 2020 5:41 am
Forum: ESP-IDF
Topic: A2DP_Source Example Pairing Bug
Replies: 2
Views: 3153

A2DP_Source Example Pairing Bug

The esp-idf a2dp_source example will only connect correctly to an a2dp sink device(head phones) when the sink device is put into pairing mode first. After pairing to the ESP32, I should not need to be pair them again unless I erase the bonded device list. But there is a bug in the BT stack or in the...
by jeeper1974
Sat Aug 15, 2020 7:08 am
Forum: ESP-IDF
Topic: Classic BT previously bonded connection error
Replies: 1
Views: 4858

Re: Classic BT previously bonded connection error

Maybe someone could help point me in the right direction with the callback functions for bluetooth. Using the example esp-idf a2dp_source I have the same issue. When the headphones are in pairing mode then bt_app_gap_cb(esp_bt_gap_cb_event_t event, esp_bt_gap_cb_param_t *param) gets called and state...