Search found 92 matches

by gtjoseph
Sun Dec 18, 2022 4:18 pm
Forum: IDEs for ESP-IDF
Topic: Can't build idf-eclipse-plugin anymore. requires osgi JavaSE 17
Replies: 6
Views: 5169

Re: Can't build idf-eclipse-plugin anymore. requires osgi JavaSE 17

I should have been clearer. I do have Eclipse 2022-09 installed and it's working fine with plugin version 2.7.0 I built from master about a month ago. It's building the latest plugin from master that's the issue... I do a git pull on the master branch from https://github.com/espressif/idf-eclipse-pl...
by gtjoseph
Sat Dec 17, 2022 11:34 pm
Forum: IDEs for ESP-IDF
Topic: Can't build idf-eclipse-plugin anymore. requires osgi JavaSE 17
Replies: 6
Views: 5169

Can't build idf-eclipse-plugin anymore. requires osgi JavaSE 17

I'm not sure what's going on but I can no longer build the plugin... [ERROR] Cannot resolve target definition: [ERROR] Software being installed: org.eclipse.tm.terminal.control.feature.feature.group 11.0.0.202211062329 [ERROR] Missing requirement: org.eclipse.tm.terminal.control 5.4.0.202211062329 r...
by gtjoseph
Tue Dec 06, 2022 2:07 pm
Forum: General Discussion
Topic: Cpp Programming in ESP-IDF
Replies: 2
Views: 2239

Re: Cpp Programming in ESP-IDF

There's also the esp-idf-cxx component that provides c++ interfaces for things like events, timers, gpio, i2c and spi.
https://github.com/espressif/esp-idf-cxx
by gtjoseph
Tue Dec 06, 2022 2:01 pm
Forum: ESP-IDF
Topic: Arduino as a component with idf as lib
Replies: 2
Views: 1903

Re: Arduino as a component with idf as lib

Do you really need to go down the idf-as-lib route? I'd think moving your current stuff into a regular esp-idf project and adding the ESP Arduino Core as a regular component would be the easiest route. That's what I did when moving from platformio.
by gtjoseph
Tue Dec 06, 2022 1:56 pm
Forum: General Discussion
Topic: Using esp-idf instead of Arduino
Replies: 1
Views: 1327

Re: Using esp-idf instead of Arduino

The easiest way to do this is to use the ESP Arduino Core component. https://docs.espressif.com/projects/arduino-esp32/en/latest/ https://github.com/espressif/arduino-esp32 With it you should be able to add most Arduino libraries to an esp-idf project without changing them at all. You can then use t...
by gtjoseph
Mon Nov 14, 2022 11:11 am
Forum: General Discussion
Topic: How to use CMake with components in custom directory
Replies: 1
Views: 1272

Re: How to use CMake with components in custom directory

There are a few ways to do this... Let's say your directory structure looks like this (it's just an arbitrary structure)... mysource mycomponents mycomponent1 CMakeLists.txt .. mycomponent2 CMakeLists.txt .. myprojects myproject1 CMakeLists.txt .. You could do this in your myproject1/CMakeLists.ttxt...
by gtjoseph
Tue Oct 18, 2022 4:06 pm
Forum: ESP-IDF
Topic: How to determine all ESP-IDF component include directories for running a code analysis tool
Replies: 6
Views: 4625

Re: How to determine all ESP-IDF component include directories for running a code analysis tool

At first I was thinking "Hey wait, there are suspicious backslashes in the paths!". Then I realized: Windows :) If you look in ./components/xtensa/esp32s3/include/xtensa/config/core.h you'll notice that hal.h is only referenced as "../hal.h" when __XTENSA__ is NOT defined otherwise it's referenced a...
by gtjoseph
Fri Oct 07, 2022 5:02 pm
Forum: General Discussion
Topic: High Frequency task
Replies: 2
Views: 1603

Re: High Frequency task

In menuconfig, Componenbt config, FreeRTOS, kernel, try setting configTICK_RATE_HZ to 1000.