vscode 개발환경에서 ESP32 Example 중에 "peripherals -> LCD -> lvgl" 예제 프로그램 빌드시 아래와 같은 오류가 발생하는 경우에 대한 대처 방법이다.
CMake Error at C:/INSTALL_PATH/esp/esp-idf/tools/cmake/component.cmake:369 (__component_get_property):
__component_get_property Function invoked with incorrect arguments for
function named: __component_get_property
Call Stack (most recent call first):
CMakeLists.txt:8 (idf_component_get_property)
오류 내용은 잘못된 인수(argument)로 "__component_get_property" 함수가 호출되었다는 내용이다.
수정 방법은 settings.json 파일에 다음을 추가하는 것이다.
"idf.enableIdfComponentManager": true,
해당 내용에 대한 자세한 정보는 다음 링크를 참조한다.
https://github.com/espressif/esp-idf/issues/8083
추가적으로 새로운 컴포넌트를 추가하는 방법은 다음 링크를 참조한다.
https://github.com/espressif/esp-idf/issues/6464
'일반 개발 리소스 > ESP32' 카테고리의 다른 글
ESP32 - vscode-esp-idf-extension - esp idf settings (0) | 2022.08.01 |
---|---|
ESP32 - vscode-esp-idf-extension - tutorial - additional_frameworks (0) | 2022.08.01 |
ESP32 - Get Started (0) | 2022.07.27 |
ESP-WROVER-KIT V4.1 Getting Started Guide (0) | 2022.07.25 |
ESP32 - API Reference - Application Protocols - ESP-MQTT (0) | 2022.07.22 |
vscode 개발환경에서 ESP32 Example 중에 "peripherals -> LCD -> lvgl" 예제 프로그램 빌드시 아래와 같은 오류가 발생하는 경우에 대한 대처 방법이다.
CMake Error at C:/INSTALL_PATH/esp/esp-idf/tools/cmake/component.cmake:369 (__component_get_property):
__component_get_property Function invoked with incorrect arguments for
function named: __component_get_property
Call Stack (most recent call first):
CMakeLists.txt:8 (idf_component_get_property)
오류 내용은 잘못된 인수(argument)로 "__component_get_property" 함수가 호출되었다는 내용이다.
수정 방법은 settings.json 파일에 다음을 추가하는 것이다.
"idf.enableIdfComponentManager": true,
해당 내용에 대한 자세한 정보는 다음 링크를 참조한다.
https://github.com/espressif/esp-idf/issues/8083
추가적으로 새로운 컴포넌트를 추가하는 방법은 다음 링크를 참조한다.
https://github.com/espressif/esp-idf/issues/6464
'일반 개발 리소스 > ESP32' 카테고리의 다른 글
ESP32 - vscode-esp-idf-extension - esp idf settings (0) | 2022.08.01 |
---|---|
ESP32 - vscode-esp-idf-extension - tutorial - additional_frameworks (0) | 2022.08.01 |
ESP32 - Get Started (0) | 2022.07.27 |
ESP-WROVER-KIT V4.1 Getting Started Guide (0) | 2022.07.25 |
ESP32 - API Reference - Application Protocols - ESP-MQTT (0) | 2022.07.22 |