Search found 300 matches

by mbratch
Thu Jul 29, 2021 3:01 pm
Forum: Sample Code
Topic: help delayMicroseconds() on esp?
Replies: 2
Views: 16866

Re: help delayMicroseconds() on esp?

Are you using the Arduino platform for ESP32 development? If so, I think `delayMicroseconds()` is available.
by mbratch
Thu Jul 29, 2021 2:58 pm
Forum: Sample Code
Topic: I am new to using the device esp32 i want correct code
Replies: 2
Views: 9618

Re: I am new to using the device esp32 i want correct code

Could you clarify what you mean by "...convert to ESP32 Modula"? Modula is a programming language developed in the 1970's. Do you mean to convert to ESP-IDF? If so, then install ESP-IDF per their instructions on the espressif.com site, and look at the basic examples to see how programs are structured.
by mbratch
Tue Jul 27, 2021 2:58 pm
Forum: General Discussion
Topic: Choose ESP32 Edition
Replies: 3
Views: 2601

Re: Choose ESP32 Edition

They both support Wifi. Which one you choose depends upon your other detailed specifications: power consumption, how many and type of I/O ports, maybe cost, other features...
by mbratch
Mon Jul 26, 2021 7:55 pm
Forum: General Discussion
Topic: WIFI: Pass & User //No touching the firmware
Replies: 5
Views: 3917

Re: WIFI: Pass & User //No touching the firmware

Also see the Espressif site discussion of this topic: Wi-Fi Provisioning. There are other options besides BLE. For example, you can use a configuration page implemented with Soft AP, or use Smartconfig.
by mbratch
Mon Jul 26, 2021 12:20 pm
Forum: ESP-IDF
Topic: WIFI : Trouble with ESP WiFi routine
Replies: 2
Views: 2059

Re: WIFI : Trouble with ESP WiFi routine

That's 1000 lines of code you're asking people to review cold. Perhaps you can narrow the problem down somehow. What is the console output when the crash occurs? There's typically a lot of detail there that can point you to a more specific location of the failure (e.g., a specific function). You sho...
by mbratch
Sun Jul 25, 2021 6:24 pm
Forum: ESP-IDF
Topic: How to get rid of policy CMP0076 warning?
Replies: 3
Views: 3782

Re: How to get rid of policy CMP0076 warning?

Great, thanks. Hadn't encountered that post after all the searching. The one I encountered said to include the policy setting to remove the warning.
by mbratch
Sun Jul 25, 2021 3:21 pm
Forum: ESP-IDF
Topic: How to get rid of policy CMP0076 warning?
Replies: 3
Views: 3782

Re: How to get rid of policy CMP0076 warning?

Nobody knows how to get rid of this warning?
by mbratch
Fri Jul 23, 2021 1:40 pm
Forum: ESP-IDF
Topic: OTA doesn't work over Ethernet but works fine over WiFi
Replies: 12
Views: 7629

Re: OTA doesn't work over Ethernet but works fine over WiFi

You mentioned it worked with the prior version of ESP-IDF then stopped working when you upgraded. Is the upgrade the only difference between the working version and the one that now doesn't work? Or are there app changes mixed in as well?
by mbratch
Fri Jul 23, 2021 2:35 am
Forum: ESP-IDF
Topic: OTA doesn't work over Ethernet but works fine over WiFi
Replies: 12
Views: 7629

Re: OTA doesn't work over Ethernet but works fine over WiFi

I haven't read the documentation to determine the limitations of it's capability, but I do know that OTA stands for "over the air".
by mbratch
Thu Jul 22, 2021 1:04 pm
Forum: ESP-IDF
Topic: How to get rid of policy CMP0076 warning?
Replies: 3
Views: 3782

How to get rid of policy CMP0076 warning?

I am getting the familiar warning from a fresh ESP-IDF build: CMake Warning (dev) at C:/Users/mdbra/Documents/esp-idf/components/mbedtls/CMakeLists.txt:114 (target_sources): Policy CMP0076 is not set: target_sources() command converts relative paths to absolute. Run "cmake --help-policy CMP0076" for...