Search found 7 matches

by warwound
Sat Jul 19, 2025 5:29 pm
Forum: ESP-IDF
Topic: ESP32-P4 Camera App: esp_cam_ctlr_receive() hangs
Replies: 10
Views: 5601

Re: ESP32-P4 Camera App: esp_cam_ctlr_receive() hangs

I came here searching for *exactly this*...
I'd removed all the dsi display code from the camera_dsi example and found that the esp_cam_ctlr_receive() hangs when called a second time.

Meanwhile I've had much better results connecting my CSI camera and ESP32-P4 using the esp_video component:
https ...
by warwound
Thu Feb 20, 2025 2:21 pm
Forum: ESP32 Arduino
Topic: WebUpdate how to create firmware image file?
Replies: 4
Views: 5526

Re: WebUpdate how to create firmware image file?

I started this thread a while back, got busy with other things and have only recently looked at it again...

My problem was that my chosen partition scheme did not have an OTA partition!
I chose: Minimal (1.3MB APP / 700KB SPIFFS)
And assumed that with 4MBs of flash memory this scheme would result ...
by warwound
Fri Oct 04, 2024 10:24 am
Forum: ESP32 Arduino
Topic: WebUpdate how to create firmware image file?
Replies: 4
Views: 5526

Re: WebUpdate how to create firmware image file?


I may be a bit biased, but I think the OTAWebUpdater example does a better job, particularly that it checks that the firmware uploaded will fit in the OTA partition size.


I have now modified the OTAWebUpdater to work in my sketch but it it fails much like the WebUpdate.
I suspect I'm not ...
by warwound
Wed Oct 02, 2024 11:13 am
Forum: ESP32 Arduino
Topic: WebUpdate how to create firmware image file?
Replies: 4
Views: 5526

WebUpdate how to create firmware image file?

I have flashed the WebUpdate example to my WT32-ETH01.
But am confused - how do I create the firmware image file that I will upload?

In Arduino IDE I tried Sketch menu > Export Compiled Binary.
In my sketch folder I see:
/build/esp32.esp32.wt32-eth01/
which contains files:
ConnectBox2.ino.bin ...
by warwound
Wed Aug 07, 2024 11:30 am
Forum: ESP-IDF
Topic: RFM73 C SPI library
Replies: 0
Views: 1038

RFM73 C SPI library

I am developing a C application using Eclipse and the ESP-IDF.
I have a WT32-ETH01 dev board with an RFM73 radio transceiver attached, I need help using the RFM73 from my C code.

There are various working C++ class based libraries for the RFM73 - both arduino and ESP-IDF.
But my application is a C ...
by warwound
Mon Sep 23, 2019 6:27 am
Forum: ESP-ADF
Topic: Equalizer gain valid values
Replies: 2
Views: 6044

Re: Equalizer gain valid values

Thanks for the reply.

I have updated my code so that a touching the PLAY touchpad reduces my equalizer values and touching SET increases the values.
I set a min allowed value of -20dB and a max allowed value of 0dB - limiting the values PLAY and SET can set.
For my tests i set all 20 bands of the ...
by warwound
Fri Aug 23, 2019 9:20 am
Forum: ESP-ADF
Topic: Equalizer gain valid values
Replies: 2
Views: 6044

Equalizer gain valid values

What is the range of values that are valid when setting the equalizer gain?

audio_element_handle_t equalizer;

void updateEqualizer(int value_gain){
bool is_channels_gain_equal=true;
for(int index=0; index<10; index++){
esp_err_t result=equalizer_set_gain_info(equalizer, index, value_gain, is ...

Go to advanced search