platform-espressif32
platform-espressif32 copied to clipboard
FR: use LDF with custom componets
Hi.
Using platformIO with esp-idf framework, it would be great if we could use "lib_deps" in .ini file to add esp-idf custom components like we do working with Arduino framework from git
Thank you.
alternatively you can put the component in a components folder and add to CMakeLists.txt similar to this, including the esp-dsp component:
cmake_minimum_required(VERSION 3.16.0)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
list(APPEND EXTRA_COMPONENT_DIRS esp-dsp)
project(espidf-arduino-wifiscan)