Search found 25 matches

by MindReader32
Thu Jun 24, 2021 9:32 am
Forum: ESP32 Arduino
Topic: rtc_clk_cal() call returns 0 after watchdog reboot
Replies: 0
Views: 1916

rtc_clk_cal() call returns 0 after watchdog reboot

Hi, I raised an issue against an audio library, the original issue with detail can be found here: https://github.com/earlephilhower/ESP8266Audio/issues/399 Occurs on both 1.0.4 and 1.0.6 and the latest 2.x alpha Arduino libraries. The fundamental problem is that after a watchdog reset the `rtc_clk_c...
by MindReader32
Fri Nov 29, 2019 5:37 pm
Forum: Hardware
Topic: Wire IO12 and I36 to provide an IO with Analog when WiFi is active.
Replies: 0
Views: 2019

Wire IO12 and I36 to provide an IO with Analog when WiFi is active.

Hi, Perhaps a silly question, but just in case there is a gotcha... Because of (lack of) pin availability and no ADC on channel 1 available to use, within the constraint of my project... I intend to simply connect IO12 and I36 together and provide a single connection that can do digital IO and analo...
by MindReader32
Sun Oct 13, 2019 10:04 am
Forum: ESP-IDF
Topic: Parrallel compiling with CMake
Replies: 3
Views: 4697

Re: Parrallel compiling with CMake

cool, thanks, ccache is working a treat on macOS using homebrew.
by MindReader32
Sun Oct 13, 2019 9:24 am
Forum: ESP-IDF
Topic: Shared code and cross-platform stubs in IDF CMake API v4.0
Replies: 2
Views: 5372

Re: Shared code and cross-platform stubs in IDF CMake API v4.0

I've waded thru this (nodding appropriately) "Compatibility between "normal CMake" and ESP-IDF": https://esp32.com/viewtopic.php?f=13&t=7535&start=30 In the process found this: https://github.com/PerMalmberg/IO-Card-G3 Which leads to this: https://github.com/PerMalmberg/Smooth Which looks awesome on...
by MindReader32
Sun Oct 13, 2019 9:13 am
Forum: ESP-IDF
Topic: Help using CLion + CMake + ESP-IDF v4.0+
Replies: 8
Views: 13174

Re: Help using CLion + CMake + ESP-IDF v4.0+

Thanks for the tip, so I best not go down that route for my other question: https://esp32.com/viewtopic.php?f=13&t=12656
All the best.
by MindReader32
Sun Oct 13, 2019 8:41 am
Forum: ESP-IDF
Topic: Help using CLion + CMake + ESP-IDF v4.0+
Replies: 8
Views: 13174

Re: Help using CLion + CMake + ESP-IDF v4.0+

My question to the ESP devs is why does the 'build_system' 'idf_as_lib' example explicitly specify Ninja? cmake .. -DCMAKE_TOOLCHAIN_FILE=$IDF_PATH/tools/cmake/toolchain-esp32.cmake -DTARGET=esp32 -GNinja Just a developer's personal preference? or is there something in 4.0beta (and/or beyond) that w...
by MindReader32
Sun Oct 13, 2019 8:30 am
Forum: ESP-IDF
Topic: Help using CLion + CMake + ESP-IDF v4.0+
Replies: 8
Views: 13174

Re: Help using CLion + CMake + ESP-IDF v4.0+

I do realise that, to be clear then, what I meant by "IDF CMake Makefile support" being deprecated refers to this: Since ESP-IDF V4.0, the default build system is based on CMake. This documentation is for the legacy build system based on GNU Make. Support for this build system may be removed in futu...
by MindReader32
Sun Oct 13, 2019 8:10 am
Forum: ESP-IDF
Topic: Help using CLion + CMake + ESP-IDF v4.0+
Replies: 8
Views: 13174

Re: Help using CLion + CMake + ESP-IDF v4.0+

Thats' true, and that's what I am doing in my IDF 3.x projects, but as the IDF CMake Makefile support is deprecated in IDF 4.x I wanted to make the jump to Ninja based builds now.
by MindReader32
Sat Oct 12, 2019 3:25 pm
Forum: ESP-IDF
Topic: Help using CLion + CMake + ESP-IDF v4.0+
Replies: 8
Views: 13174

Re: Help using CLion + CMake + ESP-IDF v4.0+

Ok, progress... What didn't help... I had 2 Clion toolchain targets, one being the 'default' and a custom one called 'ESPNinjaWrapper' for the ninja wrap script mentioned above. The 'ESPNinjaWrapper' one was writing into 'build-wrapper' which the IDF CMake wasn't using (as it defaults to 'build'). H...
by MindReader32
Sat Oct 12, 2019 11:47 am
Forum: ESP-IDF
Topic: Help using CLion + CMake + ESP-IDF v4.0+
Replies: 8
Views: 13174

Help using CLion + CMake + ESP-IDF v4.0+

Hi, Now that the ESP-IDF is moving away from Make to Ninja (and Clion doesn't support Ninja) do any of the ESP engineers (who have said that they use Clion*) have any tips to get this to work with IDF v4.x+ please? I bumbled into this GitHub just ("Ninja support for CLion IDE (working with newer ver...