Building a Stand-Alone Library for ESP-IDF

1 · Adrian Ancona Novelo · Oct. 23, 2024, 12:40 p.m.
In a previous post, we learned how to modularize software written with esp-idf. The article mentions how we can use the components folder to create different modules. In this article, we are going to use that knowledge to build a stand-alone library that can live in an independent git repo and can be consumed by different projects. Example project ESP-IDF doesn’t support building libraries by themselves, so the only way we can make sure our library is built is by shipping the library with an exa...