Search found 300 matches

by mbratch
Thu Apr 27, 2023 10:03 pm
Forum: ESP-IDF
Topic: http server refuses connection
Replies: 2
Views: 1685

Re: http server refuses connection

Maybe this post would be helpful: https://esp32.com/viewtopic.php?t=12879
by mbratch
Thu Apr 27, 2023 9:58 pm
Forum: ESP-IDF
Topic: use printf in isr,the cpu will restart
Replies: 2
Views: 1587

Re: use printf in isr,the cpu will restart

There are two main problems with using printf in an ISR: amount of stack consumed, and amount of processing time taken. ISRs usually have a limited amount of stack space allocated, and usually have limited time to perform its task. You can usually configure your ISR stack space to be larger and that...
by mbratch
Wed Apr 26, 2023 8:19 pm
Forum: General Discussion
Topic: Howto get idf version of older compiled project
Replies: 3
Views: 2100

Re: Howto get idf version of older compiled project

I installed IDF 5.01 but there are a lots of legacy lacking. Need to install the proper one but I can't find any reference and initial setup is gone (New computer). Once you figure out what IDF version you want to use, you can check the version migration guides in the ESP-IDF documentation. Dependi...
by mbratch
Wed Apr 12, 2023 8:37 pm
Forum: General Discussion
Topic: power options for enclosure using ESP32 board
Replies: 7
Views: 4351

Re: power options for enclosure using ESP32 board

The Feather board has pins labeld USB (power?) and BAT. If one of these takes 5Vdc in to power the board, perhaps you could wire one of your USB-C connectors to it (power and ground).
by mbratch
Mon Apr 10, 2023 5:49 pm
Forum: General Discussion
Topic: power options for enclosure using ESP32 board
Replies: 7
Views: 4351

Re: power options for enclosure using ESP32 board

You haven't really said what moving "to an enclosure" means in terms of everything else. Since you refer to not wanting to "mount the board" near the edge, I assume you mean a development board (as others have suggested)? If you want to use the 3.3v or 5v supply pins on the development board then, y...
by mbratch
Fri Apr 07, 2023 11:15 pm
Forum: ESP-IDF
Topic: Using OTA with multi-partition application
Replies: 6
Views: 4449

Re: Using OTA with multi-partition application

@leemoore1966, I'm glad you ask. Yes, I found a solution. As a little background, here is my situation, in contrast to the original response I received to my question: I have an application that does not require the embedded web pages (or "web application") to operate since it operates with a REST A...
by mbratch
Thu Apr 06, 2023 3:02 pm
Forum: General Discussion
Topic: esp32 not recognize by win 11, how to fix
Replies: 3
Views: 12066

Re: esp32 not recognize by win 11, how to fix

I assume you mean you have an ESP32 development module that has a USB port that, when connected to your PC, Windows 11 Device Manager doesn't recognize it? If that's the case, your ESP32 module uses a particular USB to UART bridge chip and Windows 11 may not have a native driver for it. Check your d...
by mbratch
Thu Mar 23, 2023 6:03 pm
Forum: General Discussion
Topic: Hosting a new file on the https server using simple_ota_example
Replies: 1
Views: 1407

Re: Hosting a new file on the https server using simple_ota_example

You don't have to start from scratch. But I assume that the simple OTA example has the URL of the binary as well as the binary file name hard-coded in the code. So to access a different file and/or a different URL location for the file, that's a code change and rebuild. As far as the cert goes, as l...
by mbratch
Sat Mar 11, 2023 7:02 pm
Forum: ESP-IDF
Topic: C for ESP-IDF? Dev Environment?
Replies: 7
Views: 3335

Re: C for ESP-IDF? Dev Environment?

klaatu2 wrote:
Mon Mar 06, 2023 5:39 pm
What headaches are ahead using C? I assume all the ESP32 libraries are all in Python?
Nope. ESP-IDF is written in C. You can find the source code on github.
by mbratch
Sat Mar 11, 2023 6:59 pm
Forum: ESP-IDF
Topic: Windows installation with space in username
Replies: 1
Views: 1015

Re: Windows installation with space in username

Hm. Having a space in the user name there can be problematic for some programs... Maybe moving your .espressif folder to a new location and setting the following environment variables accordingly will work? What you could try is to dump out your environment variables and check which ones reference t...