I’ve taken an example someone has done online (GitHub - pantaluna/esp32_ds3231_32khz_oscillator_using_lib) and I’m trying to get it to compile under PIO - sadly I’m failing with a fatal error on including a component header file and despite reading the build documentation I’m still failing! Any help would be hugely appreciated…
All components are in a components folder, with subfolders for each component.
There’s my structure. The .h file in question is in the “include” folder of “mjd”. There are others too but I’m assuming I fix the first one, I’ll fix the rest.
My “src” CMakeLists.txt looks like this:
# This file was automatically generated for projects
# without default 'CMakeLists.txt' file.
FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/src/*.*)
idf_component_register(SRCS ${app_sources})
My root CMakeLists.txt looks like this:
cmake_minimum_required(VERSION 3.16.0)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(Test_Oscil_XTAL)
And then the error I get looks like this…
The formatting in main.c indicates it’s failing to find them, but I have no idea why (red underline under the #include entries for all 4 components.
I realise I’m probably making some very basic error somewhere, but I’d really appreciate it if anyone could help please.
Thank you in advance.