Search found 5 matches
- Wed Sep 25, 2024 12:23 pm
- Forum: ESP-IDF
- Topic: Help getting a 3rd party library to work with an ESP-IDF project
- Replies: 4
- Views: 862
Re: Help getting a 3rd party library to work with an ESP-IDF project
Yes. I finally got it building and have some code that “works.” I’m still working on refining it all. The trick in getting it to build, in my case, was forking QLib so that I could change the CMakeLists.txt files in the `q` and `infra` directories so that the `project()` directive would NOT be used....
- Tue Aug 06, 2024 8:00 pm
- Forum: ESP-IDF
- Topic: Help with managed component versions
- Replies: 1
- Views: 493
Help with managed component versions
I’ve got a project where on my Mac, it’s pulling in the expected v8.4.0 of LVGL but when a friend deletes the managed_components directory on Windows and tries to build again, it’s pulling in v9.1 of LVGL. LVGL v9.1 has some changes that don’t seem to want to compile with my current code. How do I f...
- Mon Jul 29, 2024 3:14 am
- Forum: ESP-IDF
- Topic: Help getting a 3rd party library to work with an ESP-IDF project
- Replies: 4
- Views: 862
Re: Help getting a 3rd party library to work with an ESP-IDF project
I think I at least figured out part of it. I’ve got it building. Part of the issue is that I needed to make my main code be a CPP file. So it’s now main.cpp. That’s got me past the build errors.
- Sun Jul 28, 2024 1:35 pm
- Forum: ESP-IDF
- Topic: Help getting a 3rd party library to work with an ESP-IDF project
- Replies: 4
- Views: 862
Re: Help getting a 3rd party library to work with an ESP-IDF project
Ok, I was able to track this down a little more. If I clone https://github.com/cycfi/q as a submodule so that the q/ directory is at the root of my project and change the CMakeLists.txt file at the root of my project to be this: # The following lines of boilerplate have to be in your project's CMake...
- Sun Jul 28, 2024 3:21 am
- Forum: ESP-IDF
- Topic: Help getting a 3rd party library to work with an ESP-IDF project
- Replies: 4
- Views: 862
Help getting a 3rd party library to work with an ESP-IDF project
Hello, I'm wondering if someone might help me figure out how to get the Q DSP Library (qlib) working with an ESP-IDF project for processing analog signals via ADC. It's available here: https://github.com/cycfi/q But, I'm having a really difficult time figuring out how to make it work with the main C...