Search found 21 matches

by DOugL-
Fri Jan 06, 2023 1:02 am
Forum: ESP32 Arduino
Topic: ESP32 External 32.768kHZ Crystal for RTC
Replies: 11
Views: 10647

Re: ESP32 External 32.768kHZ Crystal for RTC

using the -c option does put the libraries in place but I'm having a problem getting the libraries built with the RTC clock source change staying. In the esp32 arduino lib builder I run idf.py menuconfig and make the change but after the libraries are built, it is reverted back to using the 150KHz R...
by DOugL-
Thu Jan 05, 2023 5:27 pm
Forum: ESP32 Arduino
Topic: ESP32 External 32.768kHZ Crystal for RTC
Replies: 11
Views: 10647

Re: ESP32 External 32.768kHZ Crystal for RTC

So far I have it built as tar files and need to verify the "-c" option works. Adding idf.py menuconfig in there and changing the RTC clock source should provide the libraries needed. Now I just need to get them into the Arduino IDE v2 paths. from: https://docs.espressif.com/projects/esp-idf/en/stabl...
by DOugL-
Thu Jan 05, 2023 6:16 am
Forum: ESP32 Arduino
Topic: ESP32 External 32.768kHZ Crystal for RTC
Replies: 11
Views: 10647

Re: ESP32 External 32.768kHZ Crystal for RTC

I'm still working on it. I'm running the Arduino IDE v2.0.3 but more importantly I'm figuring out what steps are needed to get the Arduino-esp32 core and library built, modifying the RTC clock sourse with idf.py menuconfig and then getting it integrated back into the Arduino IDE. I'll post my steps ...
by DOugL-
Wed Jan 04, 2023 8:13 pm
Forum: ESP32 Arduino
Topic: ESP32 External 32.768kHZ Crystal for RTC
Replies: 11
Views: 10647

Re: ESP32 External 32.768kHZ Crystal for RTC

I'm looking to do the same thing since my ESP32 boards have GIO32/GIO33 broken out and I have a bunch of 32.7KHz crystals to try. But I've not found anything current helping with the building process of getting the Arduino 2.0 IDE updated and if this will effect all ESP32 projects. I have the esp32a...
by DOugL-
Thu Dec 29, 2022 2:33 pm
Forum: ESP32 Arduino
Topic: 2.0.6 core update adds JTAG debugging in Arduino v2 IDE
Replies: 2
Views: 2405

Re: 2.0.6 core update adds JTAG debugging in Arduino v2 IDE

@bobolink, I don't know about the ESP32-C3 but the ESP32(ESP-WROOM-32) I've tested with requires an FT232H/FT2232H based JTAG interface. Either the raw adapter or the ESP-Prog interface. Both are under US$20.
by DOugL-
Thu Dec 29, 2022 3:22 am
Forum: ESP32 Arduino
Topic: RTC in the esp32 off about 2 seconds/day or am I wrong
Replies: 0
Views: 1382

RTC in the esp32 off about 2 seconds/day or am I wrong

I wrote a sketch to get ntp time, set localtime and set the RTC then every 10 seconds print the time and compare it with NIST time( time.gov) and I'm seeing the RTC being about 2 seconds faster than NIST. What am I don't wrong or is this normal? I'm making something for a few friends and I didn't wa...
by DOugL-
Wed Dec 28, 2022 5:27 pm
Forum: ESP32 Arduino
Topic: 2.0.6 core update adds JTAG debugging in Arduino v2 IDE
Replies: 2
Views: 2405

2.0.6 core update adds JTAG debugging in Arduino v2 IDE

I'd been working on trying to get the esp32 working with the Arduino v2.0.3 IDE since it has OpenOCD built in and I was able to test that with the Arduino Zero and an STM32 but had been unsuccessful. While working on an ESP32 project I saw the 2.0.6 update and checked what was new and there it was, ...
by DOugL-
Mon Dec 26, 2022 9:57 pm
Forum: ESP32 Arduino
Topic: Arduino IDE v2.0.3 missing SPIFFS upload tool
Replies: 13
Views: 10518

Re: Arduino IDE v2.0.3 missing SPIFFS upload tool

Acuario wrote:
Sun Dec 25, 2022 5:26 am
..just one point, SPIFFS has been deprecated, you should use LittleFS instead.
Thanks, I will have to look at this and see what changes need to be made to do the same with LittleFS instead of SPIFFS.
by DOugL-
Mon Dec 19, 2022 7:50 pm
Forum: ESP32 Arduino
Topic: Arduino IDE v2.0.3 missing SPIFFS upload tool
Replies: 13
Views: 10518

Re: Arduino IDE v2.0.3 missing SPIFFS upload tool

bidrohini wrote:
Mon Dec 19, 2022 10:30 am
I have almost zero knowledge about makefiles. Could you please suggest from where I can start learning about generating makefiles? Thank you.
I found this: https://opensource.com/article/18/8/what-how-makefile
by DOugL-
Mon Dec 19, 2022 7:03 pm
Forum: ESP32 Arduino
Topic: Adding debug and optimization options to Arduino IDE v2
Replies: 1
Views: 1890

Adding debug and optimization options to Arduino IDE v2

I'm working on getting openocd debugging working on the Arduino IDE v2 and while there I've added Debugging and Optimization compiler directives. In boards.txt file I added this to the top: menu.Debugging=Compiler Debug Levels menu.opt=Optimize then in the body of the ESP32 Dev Module I added these:...