Search found 4 matches

by cicciocb
Sat Jan 25, 2020 6:49 pm
Forum: ESP32 Arduino
Topic: Frequency Measurement on digital input
Replies: 18
Views: 41441

Re: Frequency Measurement on digital input

TinkerBearNZ,
finally I found the solution avoiding to use 2 extra GPIO.

Thanks for the tip
by cicciocb
Fri Jan 24, 2020 9:40 pm
Forum: ESP32 Arduino
Topic: Frequency Measurement on digital input
Replies: 18
Views: 41441

Re: Frequency Measurement on digital input

Wouldn't you get more accuracy by using a hardware signal to gate the counter? Like... using a 5Hz signal from the LEDC, fed to a GPIO that's also used as the counter gate. Then it's just a matter of adding an interrupt routine on the negative edge of the gate signal to grab the count. I've had to ...
by cicciocb
Mon Sep 17, 2018 9:26 am
Forum: ESP32 Arduino
Topic: Problem with compiling
Replies: 4
Views: 8724

Re: Problem with compiling

The message "The requested operation requires elevation." means that esptools.exe requires the administrator rights.
Probably it has been configured to run as this.

In your case, you should try to run arduino using right click and selecting "run as administrator".
by cicciocb
Mon Sep 10, 2018 2:25 pm
Forum: ESP32 Arduino
Topic: Size of the code generated by the compiler
Replies: 0
Views: 2609

Size of the code generated by the compiler

Hi all, why the code generated by the compiler is around 3-4 times the size generated for the ESP8266 ? For example, the same ESP8266 source code compiled for the ESP32 generates a much bigger program size. A soon as a new library is included in the code, the program size increases very fast, reachi...