Search found 7 matches

by Acuario
Wed Nov 20, 2024 6:10 pm
Forum: ESP32 Arduino
Topic: Interrupt on GPIO23 not working
Replies: 1
Views: 354

Re: Interrupt on GPIO23 not working

So this is weird.. after doing some testing it seems the use of #define for the GPIO pin is causing the problem. Changing it to: constexpr int INT_GYRO = 23; and the interrupt works as expected. It seems it is a compiler related problem? This is strange as I have other programs with interrupts where...
by Acuario
Wed Nov 20, 2024 5:25 pm
Forum: ESP32 Arduino
Topic: Interrupt on GPIO23 not working
Replies: 1
Views: 354

Interrupt on GPIO23 not working

Hi, I have set up an interrupt on GPIO23 on an ESP32-WROOM-32E but it does not get triggered. I have changed to GPIO19 with exactly the same code and it works so I know my code is ok. I have attached a scope to GPIO23 and I see the IO being toggled by the device that generates the interrupt so that´...
by Acuario
Fri Jan 06, 2023 6:24 am
Forum: Hardware
Topic: ESP32 cannot be used for a long time
Replies: 2
Views: 2121

Re: ESP32 cannot be used for a long time

I stopped using linear voltage regulators as they are inefficient and can require additional cooling. I now use dc/dc buck converters, type D4012. They don't occupy much space, run cool and so far I've not had any problems with them. As they work to 40VDC input they are ideal for most applications. ...
by Acuario
Sun Dec 25, 2022 5:26 am
Forum: ESP32 Arduino
Topic: Arduino IDE v2.0.3 missing SPIFFS upload tool
Replies: 13
Views: 11278

Re: Arduino IDE v2.0.3 missing SPIFFS upload tool

..just one point, SPIFFS has been deprecated, you should use LittleFS instead.
by Acuario
Fri Dec 16, 2022 7:13 am
Forum: Hardware
Topic: ESP32-S3FH4R2 Power Up Issue
Replies: 3
Views: 2922

Re: ESP32-S3FH4R2 Power Up Issue

Have you monitored what is coming out on the device serial port? It sounds like the device is going into boot loader mode - of which there are several. Seeing what comes out on the serial port will let you see if this is what's happening. I've experienced this happening very occasionally with a ESP3...
by Acuario
Fri Dec 16, 2022 6:54 am
Forum: ESP32 Arduino
Topic: Better to use task scheduler or RTOS tasks?
Replies: 1
Views: 2121

Better to use task scheduler or RTOS tasks?

Hi, any opinions on whether it is better to use a task scheduler or RTOS tasks on a dual core ESP32? I'm thinking of a task that, for example, sends an update every 30 seconds. I've tried both and both work. It 'feels' like the RTOS way is better but are there any opinions? Also, what difference is ...
by Acuario
Sat Nov 20, 2021 5:37 am
Forum: Hardware
Topic: ESP-C3-12F programming
Replies: 1
Views: 5624

ESP-C3-12F programming

I just received my ESP-C3-12F boards (not KIT boards, the 'raw' board) that are (nearly) pin compatible with the ESP12F. After assembling my board I found I couldn't program it via my USB -> RS232 adaptor using RX/TX (as I had always programmed my ESP8266 devices. The serial port worked fine. Read t...