Search found 19 matches

by adherent
Sun May 26, 2019 3:02 pm
Forum: General Discussion
Topic: manually entered download mode, saw "waiting for download", what is next?
Replies: 8
Views: 24426

Re: manually entered download mode, saw "waiting for download", what is next?

Wroom32/32D/32U uses 3.3v flash Wrover/wrover-I uses 1.8v flash Wrover-B/IB uses 3.3v flash Pico-d4 uses 3.3v flash D2WD uses 1.8v flash Know your parts Many thanks for the hints. You are right, I need to think about if I should burn efuse to use 1.8v, as the burning action cannot be reverted :D
by adherent
Sat May 25, 2019 9:07 am
Forum: General Discussion
Topic: manually entered download mode, saw "waiting for download", what is next?
Replies: 8
Views: 24426

Re: manually entered download mode, saw "waiting for download", what is next?

Your boot mode is 3f indicating you pulled up gpio12 which is setting the flash voltage to 1.8v and wroom32 uses 3.3v flash. Set the flash voltage via efuse or remove the pullup. thanks for pointing it out. I have also one wrover kit board on which flashing is working fine. While resetting I can se...
by adherent
Fri May 24, 2019 5:41 pm
Forum: General Discussion
Topic: manually entered download mode, saw "waiting for download", what is next?
Replies: 8
Views: 24426

Re: manually entered download mode, saw "waiting for download", what is next?

The only thing that should exit download mode is a chip reset. immediately after work I tried your suggestion. Still the same :( Basically after I see the following: rst:0x10 (RTCWDT_RTC_RESET),boot:0x3f (SPI_FAST_FLASH_BOOT) flash read err, 1000 ets_main.c 371 ets Jun 8 2016 00:22:57 rst:0x10 (RTC...
by adherent
Fri May 24, 2019 9:14 am
Forum: General Discussion
Topic: manually entered download mode, saw "waiting for download", what is next?
Replies: 8
Views: 24426

Re: manually entered download mode, saw "waiting for download", what is next?

thanks for the quick reply, I did not try that....

I tried ctrl+c to terminate "make monitor" though, then make flash. It did not work.

So ctrl + ] will gracefully exit "make monitor" without breaking the download mode?
by adherent
Fri May 24, 2019 8:20 am
Forum: General Discussion
Topic: manually entered download mode, saw "waiting for download", what is next?
Replies: 8
Views: 24426

manually entered download mode, saw "waiting for download", what is next?

Yes I know, there are tons of similar posts, and I do read them through, but cannot get my problem solved :( So basically I made a custom board based on ESP32 WROOM module. Then I used "make monitor" to monitor the serial port output. By toggling the GPIO0 button I am able to see ESP32 is entering d...
by adherent
Sat Feb 09, 2019 11:17 am
Forum: General Discussion
Topic: for A2DP Source, how to "override" the current audio playing by using a new audio?
Replies: 0
Views: 2221

for A2DP Source, how to "override" the current audio playing by using a new audio?

suppose A2DP source is playing one audio, i.e. A2DP is now in started state. Now I want to stop the current playing and play another audio immediately. Should I first stop A2DP current playing, move it to idle state, then do the whole start procedure again. Or I can directly send ESP_A2D_MEDIA_CTRL_...
by adherent
Tue Jul 17, 2018 6:53 pm
Forum: General Discussion
Topic: Failed to allocate memory using malloc in BT Stack
Replies: 3
Views: 6956

Re: Failed to allocate memory using malloc in BT Stack

Thanks for the quick and detailed reply. I will follow the steps and check.
by adherent
Sun Jul 15, 2018 9:29 pm
Forum: General Discussion
Topic: Failed to allocate memory using malloc in BT Stack
Replies: 3
Views: 6956

Failed to allocate memory using malloc in BT Stack

I am using A2DP source to send audio to headset. From the log from BT Stack I can see there is this error from time to time printed out: BT: ERROR btc_media_aa_prep_sbc_2_send no buffer TxCnt 3 I digged into BT stack and found out the code is like this: while (nb_frame) { if (NULL == (p_buf = osi_ma...
by adherent
Sat May 12, 2018 9:37 pm
Forum: General Discussion
Topic: How to disable bluetooth A2DP sink's auto reconnect?
Replies: 1
Views: 4066

How to disable bluetooth A2DP sink's auto reconnect?

I use ESP32 as A2DP SRC, after I press button 1 , it will do the discovery, find one A2DP sink and create the connection. If I press button 2 , it will first disconnect the previous connection and try to connect 2nd A2DP sink. In this way I can choose a certain Sink to send certain audio. The implem...
by adherent
Wed May 09, 2018 8:56 pm
Forum: General Discussion
Topic: Can I use ESP32 as bluetooth A2DP SRC, and connect to multiple Sinks?
Replies: 0
Views: 2427

Can I use ESP32 as bluetooth A2DP SRC, and connect to multiple Sinks?

I would like ESP32 used as bluetooth A2DP SRC, and let it connected with multiple sinks. Can I create multiple connections at the same time with different audio devices? I don't need to broadcast to all devices at the same time, but rather select one device to receive audio, then switch to another d...