0.0.5
This commit is contained in:
parent
0af213a415
commit
641d9523d1
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "components/lv_port_esp32"]
|
||||||
|
path = components/lv_port_esp32
|
||||||
|
url = https://github.com/littlevgl/lv_port_esp32.git
|
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
@ -9,6 +9,11 @@
|
|||||||
},
|
},
|
||||||
"C_Cpp.intelliSenseEngineFallback": "Enabled",
|
"C_Cpp.intelliSenseEngineFallback": "Enabled",
|
||||||
"files.associations": {
|
"files.associations": {
|
||||||
"file.h": "c"
|
"file.h": "c",
|
||||||
|
"display.h": "c",
|
||||||
|
"terminal.h": "c",
|
||||||
|
"lvgl.h": "c",
|
||||||
|
"lvgl_driver.h": "c",
|
||||||
|
"lv_ex_conf.h": "c"
|
||||||
}
|
}
|
||||||
}
|
}
|
148
.vscode/tasks.json
vendored
Normal file
148
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build - Build project",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py build",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py build"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Set ESP-IDF Target",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${command:espIdf.setTarget}",
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(//d+):(//d+)://s+(warning|error)://s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Clean - Clean the project",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py fullclean",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py fullclean"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Flash - Flash the device",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.baudRate} flash",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py flash -p ${config:idf.portWin} -b ${config:idf.baudRate}"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Monitor: Start the monitor",
|
||||||
|
"type": "shell",
|
||||||
|
"dependsOn": "Flash - Flash the device",
|
||||||
|
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.baudRate} monitor",
|
||||||
|
"windows": {
|
||||||
|
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py monitor -p ${config:idf.portWin} -b ${config:idf.baudRate}"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label":"OpenOCD: Start openOCD",
|
||||||
|
"type":"shell",
|
||||||
|
"presentation": {
|
||||||
|
"echo": true,
|
||||||
|
"reveal": "never",
|
||||||
|
"focus": false,
|
||||||
|
"panel":"new"
|
||||||
|
},
|
||||||
|
"command":"openocd -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}",
|
||||||
|
"windows": {
|
||||||
|
"command": "openocd.exe -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"PATH": "${config:idf.customExtraPaths}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": {
|
||||||
|
"owner": "cpp",
|
||||||
|
"fileLocation": "absolute",
|
||||||
|
"pattern": {
|
||||||
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"severity": 4,
|
||||||
|
"message": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
@ -4,10 +4,12 @@ cmake_minimum_required(VERSION 3.5)
|
|||||||
|
|
||||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||||
set(PROJECT_VER "0.1.0.1")
|
set(PROJECT_VER "0.1.0.1")
|
||||||
set(EXTRA_COMPONENT_DIRS components/lv_examples
|
|
||||||
components/lvgl
|
set(EXTRA_COMPONENT_DIRS components/lv_port_esp32/components/lv_examples
|
||||||
components/lvgl_esp32_drivers/lvgl_tft
|
components/lv_port_esp32/components/lvgl
|
||||||
components/lvgl_esp32_drivers/lvgl_touch
|
components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft
|
||||||
components/lvgl_esp32_drivers)
|
components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch
|
||||||
|
components/lv_port_esp32/components/lvgl_esp32_drivers)
|
||||||
|
|
||||||
|
|
||||||
project(bakalarka)
|
project(bakalarka)
|
||||||
|
1
build/.bin_timestamp
Normal file
1
build/.bin_timestamp
Normal file
@ -0,0 +1 @@
|
|||||||
|
9c71743eb83e0496e3c4a6acb7795111 /home/mithras/esp/bakalarka/build/bakalarka.bin
|
Binary file not shown.
4988
build/.ninja_log
4988
build/.ninja_log
File diff suppressed because it is too large
Load Diff
@ -279,6 +279,9 @@ __idf_console_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;
|
|||||||
//Dependencies for the target
|
//Dependencies for the target
|
||||||
__idf_cxx_LIB_DEPENDS:STATIC=general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32;general;stdc++;general;gcc;
|
__idf_cxx_LIB_DEPENDS:STATIC=general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32;general;stdc++;general;gcc;
|
||||||
|
|
||||||
|
//Dependencies for the target
|
||||||
|
__idf_display_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32;
|
||||||
|
|
||||||
//Dependencies for the target
|
//Dependencies for the target
|
||||||
__idf_driver_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32;
|
__idf_driver_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;__idf_esp32;
|
||||||
|
|
||||||
@ -610,7 +613,7 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
|||||||
//ADVANCED property for variable: CMAKE_NM
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
CMAKE_NM-ADVANCED:INTERNAL=1
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
//number of local generators
|
//number of local generators
|
||||||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=88
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=94
|
||||||
//ADVANCED property for variable: CMAKE_OBJCOPY
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_OBJDUMP
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
set(CMAKE_HOST_SYSTEM "Linux-5.0.0-32-generic")
|
set(CMAKE_HOST_SYSTEM "Linux-5.3.0-42-generic")
|
||||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
set(CMAKE_HOST_SYSTEM_VERSION "5.0.0-32-generic")
|
set(CMAKE_HOST_SYSTEM_VERSION "5.3.0-42-generic")
|
||||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
include("/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake")
|
include("/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake")
|
||||||
|
@ -447,6 +447,512 @@ Run Build Command:"/usr/bin/ninja" "cmTC_028d4"
|
|||||||
[2/2] Linking CXX executable cmTC_028d4
|
[2/2] Linking CXX executable cmTC_028d4
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
|
||||||
|
Feature record: CXX_FEATURE:0cxx_alias_templates
|
||||||
|
Feature record: CXX_FEATURE:0cxx_alignas
|
||||||
|
Feature record: CXX_FEATURE:0cxx_alignof
|
||||||
|
Feature record: CXX_FEATURE:0cxx_attributes
|
||||||
|
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
|
||||||
|
Feature record: CXX_FEATURE:0cxx_auto_type
|
||||||
|
Feature record: CXX_FEATURE:0cxx_binary_literals
|
||||||
|
Feature record: CXX_FEATURE:0cxx_constexpr
|
||||||
|
Feature record: CXX_FEATURE:0cxx_contextual_conversions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_decltype
|
||||||
|
Feature record: CXX_FEATURE:0cxx_decltype_auto
|
||||||
|
Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
|
||||||
|
Feature record: CXX_FEATURE:0cxx_default_function_template_args
|
||||||
|
Feature record: CXX_FEATURE:0cxx_defaulted_functions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
|
||||||
|
Feature record: CXX_FEATURE:0cxx_delegating_constructors
|
||||||
|
Feature record: CXX_FEATURE:0cxx_deleted_functions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_digit_separators
|
||||||
|
Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
|
||||||
|
Feature record: CXX_FEATURE:0cxx_explicit_conversions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
|
||||||
|
Feature record: CXX_FEATURE:0cxx_extern_templates
|
||||||
|
Feature record: CXX_FEATURE:0cxx_final
|
||||||
|
Feature record: CXX_FEATURE:0cxx_func_identifier
|
||||||
|
Feature record: CXX_FEATURE:0cxx_generalized_initializers
|
||||||
|
Feature record: CXX_FEATURE:0cxx_generic_lambdas
|
||||||
|
Feature record: CXX_FEATURE:0cxx_inheriting_constructors
|
||||||
|
Feature record: CXX_FEATURE:0cxx_inline_namespaces
|
||||||
|
Feature record: CXX_FEATURE:0cxx_lambdas
|
||||||
|
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
|
||||||
|
Feature record: CXX_FEATURE:0cxx_local_type_template_args
|
||||||
|
Feature record: CXX_FEATURE:0cxx_long_long_type
|
||||||
|
Feature record: CXX_FEATURE:0cxx_noexcept
|
||||||
|
Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
|
||||||
|
Feature record: CXX_FEATURE:0cxx_nullptr
|
||||||
|
Feature record: CXX_FEATURE:0cxx_override
|
||||||
|
Feature record: CXX_FEATURE:0cxx_range_for
|
||||||
|
Feature record: CXX_FEATURE:0cxx_raw_string_literals
|
||||||
|
Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
|
||||||
|
Feature record: CXX_FEATURE:0cxx_return_type_deduction
|
||||||
|
Feature record: CXX_FEATURE:0cxx_right_angle_brackets
|
||||||
|
Feature record: CXX_FEATURE:0cxx_rvalue_references
|
||||||
|
Feature record: CXX_FEATURE:0cxx_sizeof_member
|
||||||
|
Feature record: CXX_FEATURE:0cxx_static_assert
|
||||||
|
Feature record: CXX_FEATURE:0cxx_strong_enums
|
||||||
|
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||||
|
Feature record: CXX_FEATURE:0cxx_thread_local
|
||||||
|
Feature record: CXX_FEATURE:0cxx_trailing_return_types
|
||||||
|
Feature record: CXX_FEATURE:0cxx_unicode_literals
|
||||||
|
Feature record: CXX_FEATURE:0cxx_uniform_initialization
|
||||||
|
Feature record: CXX_FEATURE:0cxx_unrestricted_unions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_user_literals
|
||||||
|
Feature record: CXX_FEATURE:0cxx_variable_templates
|
||||||
|
Feature record: CXX_FEATURE:0cxx_variadic_macros
|
||||||
|
Feature record: CXX_FEATURE:0cxx_variadic_templates
|
||||||
|
The target system is: Generic - -
|
||||||
|
The host system is: Linux - 5.3.0-42-generic - x86_64
|
||||||
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
|
Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
|
||||||
|
Build flags: -mlongcalls;-Wno-frame-address
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
|
The C compiler identification is GNU, found in "/home/mithras/esp/bakalarka/build/CMakeFiles/3.10.2/CompilerIdC/a.out"
|
||||||
|
|
||||||
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
|
Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
|
||||||
|
Build flags: -mlongcalls;-Wno-frame-address
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||||
|
|
||||||
|
The CXX compiler identification is GNU, found in "/home/mithras/esp/bakalarka/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out"
|
||||||
|
|
||||||
|
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
|
||||||
|
xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0
|
||||||
|
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||||
|
This is free software; see the source for copying conditions. There is NO
|
||||||
|
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
Determining if the C compiler works passed with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_60b50"
|
||||||
|
[1/2] Building C object CMakeFiles/cmTC_60b50.dir/testCCompiler.c.obj
|
||||||
|
[2/2] Linking C executable cmTC_60b50
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_f1a0e"
|
||||||
|
[1/2] Building C object CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj
|
||||||
|
[2/2] Linking C executable cmTC_f1a0e
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc
|
||||||
|
COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper
|
||||||
|
Target: xtensa-esp32-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes
|
||||||
|
Thread model: posix
|
||||||
|
gcc version 8.2.0 (crosstool-NG esp-2019r2)
|
||||||
|
COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/
|
||||||
|
LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f1a0e'
|
||||||
|
/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYQTlQa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_f1a0e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o
|
||||||
|
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f1a0e'
|
||||||
|
|
||||||
|
|
||||||
|
Parsed C implicit link information from above output:
|
||||||
|
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
|
ignore line: [Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_f1a0e"]
|
||||||
|
ignore line: [[1/2] Building C object CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj]
|
||||||
|
ignore line: [[2/2] Linking C executable cmTC_f1a0e]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper]
|
||||||
|
ignore line: [Target: xtensa-esp32-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ]
|
||||||
|
ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_f1a0e']
|
||||||
|
link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccYQTlQa.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_f1a0e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o]
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore
|
||||||
|
arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=/tmp/ccYQTlQa.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_f1a0e] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore
|
||||||
|
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0]
|
||||||
|
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc]
|
||||||
|
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib]
|
||||||
|
arg [CMakeFiles/cmTC_f1a0e.dir/CMakeCCompilerABI.c.obj] ==> ignore
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lnosys] ==> lib [nosys]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore
|
||||||
|
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0]
|
||||||
|
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc]
|
||||||
|
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
|
||||||
|
implicit libs: [gcc;c;nosys;c;gcc]
|
||||||
|
implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C [-std=c11] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_0acb3"
|
||||||
|
[1/2] Building C object CMakeFiles/cmTC_0acb3.dir/feature_tests.c.obj
|
||||||
|
[2/2] Linking C executable cmTC_0acb3
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: C_FEATURE:1c_function_prototypes
|
||||||
|
Feature record: C_FEATURE:1c_restrict
|
||||||
|
Feature record: C_FEATURE:1c_static_assert
|
||||||
|
Feature record: C_FEATURE:1c_variadic_macros
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C [-std=c99] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_52387"
|
||||||
|
[1/2] Building C object CMakeFiles/cmTC_52387.dir/feature_tests.c.obj
|
||||||
|
[2/2] Linking C executable cmTC_52387
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: C_FEATURE:1c_function_prototypes
|
||||||
|
Feature record: C_FEATURE:1c_restrict
|
||||||
|
Feature record: C_FEATURE:0c_static_assert
|
||||||
|
Feature record: C_FEATURE:1c_variadic_macros
|
||||||
|
|
||||||
|
|
||||||
|
Detecting C [-std=c90] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_46287"
|
||||||
|
[1/2] Building C object CMakeFiles/cmTC_46287.dir/feature_tests.c.obj
|
||||||
|
[2/2] Linking C executable cmTC_46287
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: C_FEATURE:1c_function_prototypes
|
||||||
|
Feature record: C_FEATURE:0c_restrict
|
||||||
|
Feature record: C_FEATURE:0c_static_assert
|
||||||
|
Feature record: C_FEATURE:0c_variadic_macros
|
||||||
|
Determining if the CXX compiler works passed with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_6ed15"
|
||||||
|
[1/2] Building CXX object CMakeFiles/cmTC_6ed15.dir/testCXXCompiler.cxx.obj
|
||||||
|
[2/2] Linking CXX executable cmTC_6ed15
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_7b9e7"
|
||||||
|
[1/2] Building CXX object CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj
|
||||||
|
[2/2] Linking CXX executable cmTC_7b9e7
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++
|
||||||
|
COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper
|
||||||
|
Target: xtensa-esp32-elf
|
||||||
|
Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes
|
||||||
|
Thread model: posix
|
||||||
|
gcc version 8.2.0 (crosstool-NG esp-2019r2)
|
||||||
|
COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/
|
||||||
|
LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_7b9e7'
|
||||||
|
/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8BZWAq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_7b9e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o
|
||||||
|
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_7b9e7'
|
||||||
|
|
||||||
|
|
||||||
|
Parsed CXX implicit link information from above output:
|
||||||
|
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
|
ignore line: [Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_7b9e7"]
|
||||||
|
ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj]
|
||||||
|
ignore line: [[2/2] Linking CXX executable cmTC_7b9e7]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper]
|
||||||
|
ignore line: [Target: xtensa-esp32-elf]
|
||||||
|
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ]
|
||||||
|
ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/]
|
||||||
|
ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_7b9e7']
|
||||||
|
link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8BZWAq.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_7b9e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o]
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore
|
||||||
|
arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=/tmp/cc8BZWAq.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_7b9e7] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore
|
||||||
|
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0]
|
||||||
|
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc]
|
||||||
|
arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib]
|
||||||
|
arg [CMakeFiles/cmTC_7b9e7.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
|
||||||
|
arg [-lstdc++] ==> lib [stdc++]
|
||||||
|
arg [-lm] ==> lib [m]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lnosys] ==> lib [nosys]
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore
|
||||||
|
arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore
|
||||||
|
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0]
|
||||||
|
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc]
|
||||||
|
collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
|
||||||
|
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
|
||||||
|
implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_44fe5"
|
||||||
|
[1/2] Building CXX object CMakeFiles/cmTC_44fe5.dir/feature_tests.cxx.obj
|
||||||
|
[2/2] Linking CXX executable cmTC_44fe5
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alias_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alignas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alignof
|
||||||
|
Feature record: CXX_FEATURE:1cxx_attributes
|
||||||
|
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
|
||||||
|
Feature record: CXX_FEATURE:1cxx_auto_type
|
||||||
|
Feature record: CXX_FEATURE:1cxx_binary_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_constexpr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_contextual_conversions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype_auto
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
|
||||||
|
Feature record: CXX_FEATURE:1cxx_default_function_template_args
|
||||||
|
Feature record: CXX_FEATURE:1cxx_defaulted_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_delegating_constructors
|
||||||
|
Feature record: CXX_FEATURE:1cxx_deleted_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_digit_separators
|
||||||
|
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
|
||||||
|
Feature record: CXX_FEATURE:1cxx_explicit_conversions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
|
||||||
|
Feature record: CXX_FEATURE:1cxx_extern_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_final
|
||||||
|
Feature record: CXX_FEATURE:1cxx_func_identifier
|
||||||
|
Feature record: CXX_FEATURE:1cxx_generalized_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_generic_lambdas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
|
||||||
|
Feature record: CXX_FEATURE:1cxx_inline_namespaces
|
||||||
|
Feature record: CXX_FEATURE:1cxx_lambdas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
|
||||||
|
Feature record: CXX_FEATURE:1cxx_local_type_template_args
|
||||||
|
Feature record: CXX_FEATURE:1cxx_long_long_type
|
||||||
|
Feature record: CXX_FEATURE:1cxx_noexcept
|
||||||
|
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
|
||||||
|
Feature record: CXX_FEATURE:1cxx_nullptr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_override
|
||||||
|
Feature record: CXX_FEATURE:1cxx_range_for
|
||||||
|
Feature record: CXX_FEATURE:1cxx_raw_string_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_return_type_deduction
|
||||||
|
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
|
||||||
|
Feature record: CXX_FEATURE:1cxx_rvalue_references
|
||||||
|
Feature record: CXX_FEATURE:1cxx_sizeof_member
|
||||||
|
Feature record: CXX_FEATURE:1cxx_static_assert
|
||||||
|
Feature record: CXX_FEATURE:1cxx_strong_enums
|
||||||
|
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||||
|
Feature record: CXX_FEATURE:1cxx_thread_local
|
||||||
|
Feature record: CXX_FEATURE:1cxx_trailing_return_types
|
||||||
|
Feature record: CXX_FEATURE:1cxx_unicode_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_uniform_initialization
|
||||||
|
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_user_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variable_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variadic_macros
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variadic_templates
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX [-std=c++14] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_cfc07"
|
||||||
|
[1/2] Building CXX object CMakeFiles/cmTC_cfc07.dir/feature_tests.cxx.obj
|
||||||
|
[2/2] Linking CXX executable cmTC_cfc07
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alias_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alignas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alignof
|
||||||
|
Feature record: CXX_FEATURE:1cxx_attributes
|
||||||
|
Feature record: CXX_FEATURE:1cxx_attribute_deprecated
|
||||||
|
Feature record: CXX_FEATURE:1cxx_auto_type
|
||||||
|
Feature record: CXX_FEATURE:1cxx_binary_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_constexpr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_contextual_conversions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype_auto
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
|
||||||
|
Feature record: CXX_FEATURE:1cxx_default_function_template_args
|
||||||
|
Feature record: CXX_FEATURE:1cxx_defaulted_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_delegating_constructors
|
||||||
|
Feature record: CXX_FEATURE:1cxx_deleted_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_digit_separators
|
||||||
|
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
|
||||||
|
Feature record: CXX_FEATURE:1cxx_explicit_conversions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
|
||||||
|
Feature record: CXX_FEATURE:1cxx_extern_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_final
|
||||||
|
Feature record: CXX_FEATURE:1cxx_func_identifier
|
||||||
|
Feature record: CXX_FEATURE:1cxx_generalized_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_generic_lambdas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
|
||||||
|
Feature record: CXX_FEATURE:1cxx_inline_namespaces
|
||||||
|
Feature record: CXX_FEATURE:1cxx_lambdas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_lambda_init_captures
|
||||||
|
Feature record: CXX_FEATURE:1cxx_local_type_template_args
|
||||||
|
Feature record: CXX_FEATURE:1cxx_long_long_type
|
||||||
|
Feature record: CXX_FEATURE:1cxx_noexcept
|
||||||
|
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
|
||||||
|
Feature record: CXX_FEATURE:1cxx_nullptr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_override
|
||||||
|
Feature record: CXX_FEATURE:1cxx_range_for
|
||||||
|
Feature record: CXX_FEATURE:1cxx_raw_string_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_return_type_deduction
|
||||||
|
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
|
||||||
|
Feature record: CXX_FEATURE:1cxx_rvalue_references
|
||||||
|
Feature record: CXX_FEATURE:1cxx_sizeof_member
|
||||||
|
Feature record: CXX_FEATURE:1cxx_static_assert
|
||||||
|
Feature record: CXX_FEATURE:1cxx_strong_enums
|
||||||
|
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||||
|
Feature record: CXX_FEATURE:1cxx_thread_local
|
||||||
|
Feature record: CXX_FEATURE:1cxx_trailing_return_types
|
||||||
|
Feature record: CXX_FEATURE:1cxx_unicode_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_uniform_initialization
|
||||||
|
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_user_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variable_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variadic_macros
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variadic_templates
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX [-std=c++11] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_ec5f8"
|
||||||
|
[1/2] Building CXX object CMakeFiles/cmTC_ec5f8.dir/feature_tests.cxx.obj
|
||||||
|
[2/2] Linking CXX executable cmTC_ec5f8
|
||||||
|
|
||||||
|
|
||||||
|
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alias_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alignas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_alignof
|
||||||
|
Feature record: CXX_FEATURE:1cxx_attributes
|
||||||
|
Feature record: CXX_FEATURE:0cxx_attribute_deprecated
|
||||||
|
Feature record: CXX_FEATURE:1cxx_auto_type
|
||||||
|
Feature record: CXX_FEATURE:0cxx_binary_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_constexpr
|
||||||
|
Feature record: CXX_FEATURE:0cxx_contextual_conversions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype
|
||||||
|
Feature record: CXX_FEATURE:0cxx_decltype_auto
|
||||||
|
Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
|
||||||
|
Feature record: CXX_FEATURE:1cxx_default_function_template_args
|
||||||
|
Feature record: CXX_FEATURE:1cxx_defaulted_functions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
|
||||||
|
Feature record: CXX_FEATURE:1cxx_delegating_constructors
|
||||||
|
Feature record: CXX_FEATURE:1cxx_deleted_functions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_digit_separators
|
||||||
|
Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
|
||||||
|
Feature record: CXX_FEATURE:1cxx_explicit_conversions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
|
||||||
|
Feature record: CXX_FEATURE:1cxx_extern_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_final
|
||||||
|
Feature record: CXX_FEATURE:1cxx_func_identifier
|
||||||
|
Feature record: CXX_FEATURE:1cxx_generalized_initializers
|
||||||
|
Feature record: CXX_FEATURE:0cxx_generic_lambdas
|
||||||
|
Feature record: CXX_FEATURE:1cxx_inheriting_constructors
|
||||||
|
Feature record: CXX_FEATURE:1cxx_inline_namespaces
|
||||||
|
Feature record: CXX_FEATURE:1cxx_lambdas
|
||||||
|
Feature record: CXX_FEATURE:0cxx_lambda_init_captures
|
||||||
|
Feature record: CXX_FEATURE:1cxx_local_type_template_args
|
||||||
|
Feature record: CXX_FEATURE:1cxx_long_long_type
|
||||||
|
Feature record: CXX_FEATURE:1cxx_noexcept
|
||||||
|
Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
|
||||||
|
Feature record: CXX_FEATURE:1cxx_nullptr
|
||||||
|
Feature record: CXX_FEATURE:1cxx_override
|
||||||
|
Feature record: CXX_FEATURE:1cxx_range_for
|
||||||
|
Feature record: CXX_FEATURE:1cxx_raw_string_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
|
||||||
|
Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
|
||||||
|
Feature record: CXX_FEATURE:0cxx_return_type_deduction
|
||||||
|
Feature record: CXX_FEATURE:1cxx_right_angle_brackets
|
||||||
|
Feature record: CXX_FEATURE:1cxx_rvalue_references
|
||||||
|
Feature record: CXX_FEATURE:1cxx_sizeof_member
|
||||||
|
Feature record: CXX_FEATURE:1cxx_static_assert
|
||||||
|
Feature record: CXX_FEATURE:1cxx_strong_enums
|
||||||
|
Feature record: CXX_FEATURE:1cxx_template_template_parameters
|
||||||
|
Feature record: CXX_FEATURE:1cxx_thread_local
|
||||||
|
Feature record: CXX_FEATURE:1cxx_trailing_return_types
|
||||||
|
Feature record: CXX_FEATURE:1cxx_unicode_literals
|
||||||
|
Feature record: CXX_FEATURE:1cxx_uniform_initialization
|
||||||
|
Feature record: CXX_FEATURE:1cxx_unrestricted_unions
|
||||||
|
Feature record: CXX_FEATURE:1cxx_user_literals
|
||||||
|
Feature record: CXX_FEATURE:0cxx_variable_templates
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variadic_macros
|
||||||
|
Feature record: CXX_FEATURE:1cxx_variadic_templates
|
||||||
|
|
||||||
|
|
||||||
|
Detecting CXX [-std=c++98] compiler features compiled with the following output:
|
||||||
|
Change Dir: /home/mithras/esp/bakalarka/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command:"/usr/bin/ninja" "cmTC_0572c"
|
||||||
|
[1/2] Building CXX object CMakeFiles/cmTC_0572c.dir/feature_tests.cxx.obj
|
||||||
|
[2/2] Linking CXX executable cmTC_0572c
|
||||||
|
|
||||||
|
|
||||||
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
|
Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
|
||||||
Feature record: CXX_FEATURE:0cxx_alias_templates
|
Feature record: CXX_FEATURE:0cxx_alias_templates
|
||||||
Feature record: CXX_FEATURE:0cxx_alignas
|
Feature record: CXX_FEATURE:0cxx_alignas
|
||||||
|
@ -617,6 +617,48 @@
|
|||||||
/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/list_install_components.dir
|
/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/list_install_components.dir
|
||||||
/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/local.dir
|
/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/local.dir
|
||||||
/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install.dir
|
/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/strip.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/edit_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/list_install_components.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/local.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl/CMakeFiles/install.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/list_install_components.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/strip.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/edit_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/list_install_components.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/local.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/strip.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/edit_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/list_install_components.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/local.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/strip.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/edit_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/list_install_components.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/local.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/install/strip.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/edit_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/__idf_display.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/list_install_components.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/install/local.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/mithras/esp/bakalarka/build/esp-idf/display/CMakeFiles/install.dir
|
||||||
/home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/install/strip.dir
|
/home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/install/strip.dir
|
||||||
/home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/edit_cache.dir
|
/home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/edit_cache.dir
|
||||||
/home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir
|
/home/mithras/esp/bakalarka/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir
|
||||||
|
BIN
build/CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj
Normal file
BIN
build/CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj
Normal file
Binary file not shown.
0
build/CMakeFiles/bootloader-complete
Normal file
0
build/CMakeFiles/bootloader-complete
Normal file
Binary file not shown.
BIN
build/bakalarka.elf
Executable file
BIN
build/bakalarka.elf
Executable file
Binary file not shown.
56945
build/bakalarka.map
56945
build/bakalarka.map
File diff suppressed because one or more lines are too long
@ -99,3 +99,4 @@
|
|||||||
888 1225 1585220848 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 75552f94b62a77fd
|
888 1225 1585220848 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 75552f94b62a77fd
|
||||||
3892 4065 1584850581 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 53bad9ca874fb9c6
|
3892 4065 1584850581 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 53bad9ca874fb9c6
|
||||||
0 1814 1585409937 build.ninja 67fcd4bb430fc215
|
0 1814 1585409937 build.ninja 67fcd4bb430fc215
|
||||||
|
0 4153 1585440593 build.ninja 67fcd4bb430fc215
|
||||||
|
BIN
build/bootloader/bootloader.bin
Normal file
BIN
build/bootloader/bootloader.bin
Normal file
Binary file not shown.
BIN
build/bootloader/bootloader.elf
Executable file
BIN
build/bootloader/bootloader.elf
Executable file
Binary file not shown.
4279
build/bootloader/bootloader.map
Normal file
4279
build/bootloader/bootloader.map
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1662
build/build.ninja
1662
build/build.ninja
File diff suppressed because one or more lines are too long
92
build/cacert.pem.S
Normal file
92
build/cacert.pem.S
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
/* * Data converted from /home/mithras/esp/bakalarka/components/https_server/certs/cacert.pem
|
||||||
|
* (null byte appended)
|
||||||
|
*/
|
||||||
|
.data
|
||||||
|
.section .rodata.embedded
|
||||||
|
|
||||||
|
.global cacert_pem
|
||||||
|
cacert_pem:
|
||||||
|
|
||||||
|
.global _binary_cacert_pem_start
|
||||||
|
_binary_cacert_pem_start: /* for objcopy compatibility */
|
||||||
|
.byte 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49
|
||||||
|
.byte 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x4d, 0x49, 0x49, 0x44
|
||||||
|
.byte 0x4b, 0x7a, 0x43, 0x43, 0x41, 0x68, 0x4f, 0x67, 0x41, 0x77, 0x49, 0x42, 0x41, 0x67, 0x49, 0x55
|
||||||
|
.byte 0x42, 0x78, 0x4d, 0x33, 0x57, 0x4a, 0x66, 0x32, 0x62, 0x50, 0x31, 0x32, 0x6b, 0x41, 0x66, 0x71
|
||||||
|
.byte 0x68, 0x6d, 0x68, 0x68, 0x6a, 0x5a, 0x57, 0x76, 0x30, 0x75, 0x6b, 0x77, 0x44, 0x51, 0x59, 0x4a
|
||||||
|
.byte 0x4b, 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x0a, 0x42, 0x51, 0x41
|
||||||
|
.byte 0x77, 0x4a, 0x54, 0x45, 0x6a, 0x4d, 0x43, 0x45, 0x47, 0x41, 0x31, 0x55, 0x45, 0x41, 0x77, 0x77
|
||||||
|
.byte 0x61, 0x52, 0x56, 0x4e, 0x51, 0x4d, 0x7a, 0x49, 0x67, 0x53, 0x46, 0x52, 0x55, 0x55, 0x46, 0x4d
|
||||||
|
.byte 0x67, 0x63, 0x32, 0x56, 0x79, 0x64, 0x6d, 0x56, 0x79, 0x49, 0x47, 0x56, 0x34, 0x59, 0x57, 0x31
|
||||||
|
.byte 0x77, 0x62, 0x47, 0x55, 0x77, 0x48, 0x68, 0x63, 0x4e, 0x4d, 0x54, 0x67, 0x78, 0x0a, 0x4d, 0x44
|
||||||
|
.byte 0x45, 0x33, 0x4d, 0x54, 0x45, 0x7a, 0x4d, 0x6a, 0x55, 0x33, 0x57, 0x68, 0x63, 0x4e, 0x4d, 0x6a
|
||||||
|
.byte 0x67, 0x78, 0x4d, 0x44, 0x45, 0x30, 0x4d, 0x54, 0x45, 0x7a, 0x4d, 0x6a, 0x55, 0x33, 0x57, 0x6a
|
||||||
|
.byte 0x41, 0x6c, 0x4d, 0x53, 0x4d, 0x77, 0x49, 0x51, 0x59, 0x44, 0x56, 0x51, 0x51, 0x44, 0x44, 0x42
|
||||||
|
.byte 0x70, 0x46, 0x55, 0x31, 0x41, 0x7a, 0x4d, 0x69, 0x42, 0x49, 0x56, 0x46, 0x52, 0x51, 0x0a, 0x55
|
||||||
|
.byte 0x79, 0x42, 0x7a, 0x5a, 0x58, 0x4a, 0x32, 0x5a, 0x58, 0x49, 0x67, 0x5a, 0x58, 0x68, 0x68, 0x62
|
||||||
|
.byte 0x58, 0x42, 0x73, 0x5a, 0x54, 0x43, 0x43, 0x41, 0x53, 0x49, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b
|
||||||
|
.byte 0x6f, 0x5a, 0x49, 0x68, 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x42, 0x42, 0x51, 0x41, 0x44, 0x67
|
||||||
|
.byte 0x67, 0x45, 0x50, 0x41, 0x44, 0x43, 0x43, 0x41, 0x51, 0x6f, 0x43, 0x67, 0x67, 0x45, 0x42, 0x0a
|
||||||
|
.byte 0x41, 0x4c, 0x42, 0x69, 0x6e, 0x74, 0x36, 0x6e, 0x50, 0x37, 0x37, 0x52, 0x43, 0x51, 0x63, 0x6d
|
||||||
|
.byte 0x4b, 0x67, 0x77, 0x50, 0x74, 0x54, 0x73, 0x47, 0x4b, 0x30, 0x75, 0x43, 0x6c, 0x78, 0x67, 0x2b
|
||||||
|
.byte 0x4c, 0x77, 0x4b, 0x4a, 0x33, 0x57, 0x58, 0x75, 0x79, 0x65, 0x33, 0x6f, 0x71, 0x6e, 0x6e, 0x6a
|
||||||
|
.byte 0x71, 0x4a, 0x43, 0x77, 0x4d, 0x45, 0x6e, 0x65, 0x58, 0x7a, 0x47, 0x64, 0x47, 0x30, 0x39, 0x54
|
||||||
|
.byte 0x0a, 0x73, 0x41, 0x30, 0x53, 0x79, 0x4e, 0x50, 0x77, 0x72, 0x45, 0x67, 0x65, 0x62, 0x4c, 0x43
|
||||||
|
.byte 0x48, 0x38, 0x30, 0x61, 0x6e, 0x33, 0x67, 0x57, 0x55, 0x34, 0x70, 0x48, 0x44, 0x64, 0x71, 0x47
|
||||||
|
.byte 0x48, 0x66, 0x4a, 0x51, 0x61, 0x32, 0x6a, 0x42, 0x4c, 0x32, 0x39, 0x30, 0x65, 0x2f, 0x35, 0x4c
|
||||||
|
.byte 0x35, 0x4d, 0x42, 0x2b, 0x36, 0x50, 0x54, 0x73, 0x32, 0x4e, 0x4b, 0x63, 0x6f, 0x6a, 0x4b, 0x2f
|
||||||
|
.byte 0x6b, 0x0a, 0x71, 0x63, 0x5a, 0x6b, 0x6e, 0x35, 0x38, 0x4d, 0x57, 0x58, 0x68, 0x44, 0x57, 0x31
|
||||||
|
.byte 0x4e, 0x70, 0x41, 0x6e, 0x4a, 0x74, 0x6a, 0x56, 0x6e, 0x69, 0x4b, 0x32, 0x4b, 0x73, 0x76, 0x72
|
||||||
|
.byte 0x2f, 0x59, 0x49, 0x59, 0x53, 0x62, 0x79, 0x44, 0x2b, 0x4a, 0x69, 0x45, 0x73, 0x30, 0x4d, 0x47
|
||||||
|
.byte 0x78, 0x45, 0x78, 0x2b, 0x6b, 0x4f, 0x6c, 0x39, 0x64, 0x37, 0x68, 0x52, 0x48, 0x4a, 0x61, 0x49
|
||||||
|
.byte 0x7a, 0x64, 0x0a, 0x47, 0x46, 0x2f, 0x76, 0x4f, 0x32, 0x70, 0x6c, 0x32, 0x39, 0x35, 0x76, 0x31
|
||||||
|
.byte 0x71, 0x58, 0x65, 0x6b, 0x41, 0x6c, 0x6b, 0x67, 0x4e, 0x4d, 0x74, 0x59, 0x49, 0x56, 0x41, 0x6a
|
||||||
|
.byte 0x55, 0x79, 0x39, 0x43, 0x4d, 0x70, 0x71, 0x61, 0x51, 0x42, 0x43, 0x51, 0x52, 0x4c, 0x2b, 0x42
|
||||||
|
.byte 0x6d, 0x50, 0x53, 0x4a, 0x52, 0x6b, 0x58, 0x42, 0x73, 0x59, 0x6b, 0x38, 0x47, 0x50, 0x6e, 0x69
|
||||||
|
.byte 0x65, 0x53, 0x34, 0x0a, 0x73, 0x55, 0x73, 0x70, 0x35, 0x33, 0x44, 0x73, 0x4e, 0x76, 0x43, 0x43
|
||||||
|
.byte 0x74, 0x57, 0x44, 0x54, 0x36, 0x66, 0x64, 0x39, 0x44, 0x31, 0x76, 0x2b, 0x42, 0x42, 0x36, 0x6e
|
||||||
|
.byte 0x44, 0x6b, 0x2f, 0x46, 0x43, 0x50, 0x4b, 0x68, 0x74, 0x6a, 0x59, 0x4f, 0x77, 0x4f, 0x41, 0x5a
|
||||||
|
.byte 0x6c, 0x58, 0x34, 0x77, 0x57, 0x4e, 0x53, 0x5a, 0x70, 0x52, 0x4e, 0x72, 0x35, 0x64, 0x66, 0x72
|
||||||
|
.byte 0x78, 0x4b, 0x73, 0x62, 0x0a, 0x6a, 0x41, 0x6e, 0x34, 0x50, 0x43, 0x75, 0x52, 0x32, 0x61, 0x6b
|
||||||
|
.byte 0x64, 0x46, 0x34, 0x47, 0x38, 0x57, 0x4c, 0x55, 0x65, 0x44, 0x57, 0x45, 0x43, 0x41, 0x77, 0x45
|
||||||
|
.byte 0x41, 0x41, 0x61, 0x4e, 0x54, 0x4d, 0x46, 0x45, 0x77, 0x48, 0x51, 0x59, 0x44, 0x56, 0x52, 0x30
|
||||||
|
.byte 0x4f, 0x42, 0x42, 0x59, 0x45, 0x46, 0x4d, 0x6e, 0x6d, 0x64, 0x4a, 0x4b, 0x4f, 0x45, 0x65, 0x70
|
||||||
|
.byte 0x58, 0x72, 0x48, 0x49, 0x2f, 0x0a, 0x69, 0x76, 0x4d, 0x36, 0x6d, 0x56, 0x71, 0x4a, 0x67, 0x41
|
||||||
|
.byte 0x58, 0x38, 0x4d, 0x42, 0x38, 0x47, 0x41, 0x31, 0x55, 0x64, 0x49, 0x77, 0x51, 0x59, 0x4d, 0x42
|
||||||
|
.byte 0x61, 0x41, 0x46, 0x4d, 0x6e, 0x6d, 0x64, 0x4a, 0x4b, 0x4f, 0x45, 0x65, 0x70, 0x58, 0x72, 0x48
|
||||||
|
.byte 0x49, 0x2f, 0x69, 0x76, 0x4d, 0x36, 0x6d, 0x56, 0x71, 0x4a, 0x67, 0x41, 0x58, 0x38, 0x4d, 0x41
|
||||||
|
.byte 0x38, 0x47, 0x41, 0x31, 0x55, 0x64, 0x0a, 0x45, 0x77, 0x45, 0x42, 0x2f, 0x77, 0x51, 0x46, 0x4d
|
||||||
|
.byte 0x41, 0x4d, 0x42, 0x41, 0x66, 0x38, 0x77, 0x44, 0x51, 0x59, 0x4a, 0x4b, 0x6f, 0x5a, 0x49, 0x68
|
||||||
|
.byte 0x76, 0x63, 0x4e, 0x41, 0x51, 0x45, 0x4c, 0x42, 0x51, 0x41, 0x44, 0x67, 0x67, 0x45, 0x42, 0x41
|
||||||
|
.byte 0x44, 0x69, 0x58, 0x49, 0x47, 0x45, 0x6b, 0x53, 0x73, 0x4e, 0x30, 0x53, 0x4c, 0x53, 0x66, 0x43
|
||||||
|
.byte 0x46, 0x31, 0x56, 0x4e, 0x57, 0x4f, 0x33, 0x0a, 0x65, 0x6d, 0x42, 0x75, 0x72, 0x66, 0x4f, 0x63
|
||||||
|
.byte 0x44, 0x71, 0x34, 0x45, 0x47, 0x45, 0x61, 0x78, 0x52, 0x4b, 0x41, 0x55, 0x30, 0x38, 0x31, 0x34
|
||||||
|
.byte 0x56, 0x45, 0x6d, 0x55, 0x38, 0x37, 0x62, 0x74, 0x49, 0x44, 0x78, 0x38, 0x30, 0x2b, 0x7a, 0x35
|
||||||
|
.byte 0x44, 0x62, 0x66, 0x2b, 0x47, 0x47, 0x48, 0x43, 0x50, 0x72, 0x59, 0x37, 0x6f, 0x64, 0x49, 0x6b
|
||||||
|
.byte 0x78, 0x47, 0x4e, 0x6e, 0x30, 0x44, 0x4a, 0x59, 0x0a, 0x57, 0x31, 0x57, 0x63, 0x46, 0x2b, 0x44
|
||||||
|
.byte 0x4f, 0x63, 0x62, 0x69, 0x57, 0x6f, 0x55, 0x4e, 0x36, 0x44, 0x54, 0x6b, 0x41, 0x4d, 0x4c, 0x30
|
||||||
|
.byte 0x53, 0x4d, 0x6e, 0x70, 0x38, 0x61, 0x47, 0x6a, 0x39, 0x66, 0x66, 0x78, 0x33, 0x78, 0x2b, 0x71
|
||||||
|
.byte 0x6f, 0x67, 0x67, 0x54, 0x2b, 0x76, 0x47, 0x64, 0x57, 0x56, 0x56, 0x41, 0x34, 0x70, 0x67, 0x77
|
||||||
|
.byte 0x71, 0x5a, 0x54, 0x37, 0x59, 0x62, 0x6e, 0x74, 0x78, 0x0a, 0x62, 0x6b, 0x7a, 0x63, 0x4e, 0x46
|
||||||
|
.byte 0x57, 0x30, 0x73, 0x71, 0x6d, 0x43, 0x76, 0x34, 0x49, 0x4e, 0x31, 0x74, 0x34, 0x77, 0x36, 0x4c
|
||||||
|
.byte 0x30, 0x41, 0x38, 0x37, 0x5a, 0x77, 0x73, 0x4e, 0x77, 0x56, 0x70, 0x72, 0x65, 0x2f, 0x6a, 0x36
|
||||||
|
.byte 0x75, 0x79, 0x42, 0x77, 0x37, 0x73, 0x38, 0x59, 0x6f, 0x4a, 0x48, 0x44, 0x4c, 0x52, 0x46, 0x54
|
||||||
|
.byte 0x36, 0x67, 0x37, 0x71, 0x67, 0x6e, 0x30, 0x74, 0x63, 0x4e, 0x0a, 0x5a, 0x75, 0x66, 0x68, 0x4e
|
||||||
|
.byte 0x49, 0x53, 0x76, 0x67, 0x57, 0x43, 0x56, 0x4a, 0x51, 0x79, 0x2f, 0x53, 0x5a, 0x6a, 0x4e, 0x42
|
||||||
|
.byte 0x48, 0x53, 0x70, 0x6e, 0x49, 0x64, 0x43, 0x55, 0x53, 0x4a, 0x41, 0x65, 0x54, 0x59, 0x32, 0x6d
|
||||||
|
.byte 0x6b, 0x4d, 0x34, 0x73, 0x47, 0x78, 0x59, 0x30, 0x57, 0x69, 0x64, 0x6b, 0x38, 0x4c, 0x6e, 0x6a
|
||||||
|
.byte 0x79, 0x64, 0x78, 0x5a, 0x55, 0x53, 0x78, 0x43, 0x33, 0x4e, 0x6c, 0x0a, 0x68, 0x62, 0x36, 0x70
|
||||||
|
.byte 0x6e, 0x4d, 0x68, 0x33, 0x6a, 0x52, 0x71, 0x34, 0x68, 0x30, 0x2b, 0x35, 0x43, 0x5a, 0x69, 0x65
|
||||||
|
.byte 0x6c, 0x41, 0x34, 0x2f, 0x61, 0x2b, 0x54, 0x64, 0x72, 0x4e, 0x50, 0x76, 0x2f, 0x71, 0x6f, 0x6b
|
||||||
|
.byte 0x36, 0x37, 0x6f, 0x74, 0x2f, 0x58, 0x4a, 0x64, 0x59, 0x33, 0x71, 0x48, 0x43, 0x43, 0x64, 0x38
|
||||||
|
.byte 0x4f, 0x32, 0x62, 0x31, 0x34, 0x4f, 0x56, 0x71, 0x39, 0x6a, 0x6f, 0x3d, 0x0a, 0x2d, 0x2d, 0x2d
|
||||||
|
.byte 0x2d, 0x2d, 0x45, 0x4e, 0x44, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54
|
||||||
|
.byte 0x45, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x0a, 0x00
|
||||||
|
|
||||||
|
.global _binary_cacert_pem_end
|
||||||
|
_binary_cacert_pem_end: /* for objcopy compatibility */
|
||||||
|
|
||||||
|
|
||||||
|
.global cacert_pem_length
|
||||||
|
cacert_pem_length: /* not including null byte */
|
||||||
|
.word 1159
|
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/app_trace/Kconfig /home/mithras/esp/esp-idf/components/bt/Kconfig /home/mithras/esp/esp-idf/components/coap/Kconfig /home/mithras/esp/esp-idf/components/driver/Kconfig /home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp-tls/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/esp_eth/Kconfig /home/mithras/esp/esp-idf/components/esp_event/Kconfig /home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig /home/mithras/esp/esp-idf/components/esp_http_client/Kconfig /home/mithras/esp/esp-idf/components/esp_http_server/Kconfig /home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig /home/mithras/esp/esp-idf/components/esp_https_server/Kconfig /home/mithras/esp/esp-idf/components/esp_netif/Kconfig /home/mithras/esp/esp-idf/components/esp_system/Kconfig /home/mithras/esp/esp-idf/components/esp_timer/Kconfig /home/mithras/esp/esp-idf/components/esp_wifi/Kconfig /home/mithras/esp/esp-idf/components/espcoredump/Kconfig /home/mithras/esp/esp-idf/components/fatfs/Kconfig /home/mithras/esp/esp-idf/components/freemodbus/Kconfig /home/mithras/esp/esp-idf/components/freertos/Kconfig /home/mithras/esp/esp-idf/components/heap/Kconfig /home/mithras/esp/esp-idf/components/jsmn/Kconfig /home/mithras/esp/esp-idf/components/libsodium/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/lwip/Kconfig /home/mithras/esp/esp-idf/components/mbedtls/Kconfig /home/mithras/esp/esp-idf/components/mdns/Kconfig /home/mithras/esp/esp-idf/components/mqtt/Kconfig /home/mithras/esp/esp-idf/components/newlib/Kconfig /home/mithras/esp/esp-idf/components/nvs_flash/Kconfig /home/mithras/esp/esp-idf/components/openssl/Kconfig /home/mithras/esp/esp-idf/components/pthread/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig /home/mithras/esp/esp-idf/components/spiffs/Kconfig /home/mithras/esp/esp-idf/components/tinyusb/Kconfig /home/mithras/esp/esp-idf/components/unity/Kconfig /home/mithras/esp/esp-idf/components/vfs/Kconfig /home/mithras/esp/esp-idf/components/wear_levelling/Kconfig /home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig /home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig",
|
"COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/app_trace/Kconfig /home/mithras/esp/esp-idf/components/bt/Kconfig /home/mithras/esp/esp-idf/components/coap/Kconfig /home/mithras/esp/esp-idf/components/driver/Kconfig /home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp-tls/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/esp_eth/Kconfig /home/mithras/esp/esp-idf/components/esp_event/Kconfig /home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig /home/mithras/esp/esp-idf/components/esp_http_client/Kconfig /home/mithras/esp/esp-idf/components/esp_http_server/Kconfig /home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig /home/mithras/esp/esp-idf/components/esp_https_server/Kconfig /home/mithras/esp/esp-idf/components/esp_netif/Kconfig /home/mithras/esp/esp-idf/components/esp_system/Kconfig /home/mithras/esp/esp-idf/components/esp_timer/Kconfig /home/mithras/esp/esp-idf/components/esp_wifi/Kconfig /home/mithras/esp/esp-idf/components/espcoredump/Kconfig /home/mithras/esp/esp-idf/components/fatfs/Kconfig /home/mithras/esp/esp-idf/components/freemodbus/Kconfig /home/mithras/esp/esp-idf/components/freertos/Kconfig /home/mithras/esp/esp-idf/components/heap/Kconfig /home/mithras/esp/esp-idf/components/jsmn/Kconfig /home/mithras/esp/esp-idf/components/libsodium/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/lwip/Kconfig /home/mithras/esp/esp-idf/components/mbedtls/Kconfig /home/mithras/esp/esp-idf/components/mdns/Kconfig /home/mithras/esp/esp-idf/components/mqtt/Kconfig /home/mithras/esp/esp-idf/components/newlib/Kconfig /home/mithras/esp/esp-idf/components/nvs_flash/Kconfig /home/mithras/esp/esp-idf/components/openssl/Kconfig /home/mithras/esp/esp-idf/components/pthread/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig /home/mithras/esp/esp-idf/components/spiffs/Kconfig /home/mithras/esp/esp-idf/components/tinyusb/Kconfig /home/mithras/esp/esp-idf/components/unity/Kconfig /home/mithras/esp/esp-idf/components/vfs/Kconfig /home/mithras/esp/esp-idf/components/wear_levelling/Kconfig /home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig /home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/Kconfig /home/mithras/esp/bakalarka/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/Kconfig",
|
||||||
"COMPONENT_KCONFIGS_PROJBUILD": "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild /home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild /home/mithras/esp/bakalarka/main/Kconfig.projbuild",
|
"COMPONENT_KCONFIGS_PROJBUILD": "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild /home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild /home/mithras/esp/bakalarka/main/Kconfig.projbuild",
|
||||||
"COMPONENT_SDKCONFIG_RENAMES": "/home/mithras/esp/esp-idf/components/app_trace/sdkconfig.rename /home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename /home/mithras/esp/esp-idf/components/bt/sdkconfig.rename /home/mithras/esp/esp-idf/components/driver/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_event/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_system/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_timer/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_wifi/sdkconfig.rename /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename /home/mithras/esp/esp-idf/components/freemodbus/sdkconfig.rename /home/mithras/esp/esp-idf/components/freertos/sdkconfig.rename /home/mithras/esp/esp-idf/components/lwip/sdkconfig.rename /home/mithras/esp/esp-idf/components/pthread/sdkconfig.rename /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename /home/mithras/esp/esp-idf/components/vfs/sdkconfig.rename",
|
"COMPONENT_SDKCONFIG_RENAMES": "/home/mithras/esp/esp-idf/components/app_trace/sdkconfig.rename /home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename /home/mithras/esp/esp-idf/components/bt/sdkconfig.rename /home/mithras/esp/esp-idf/components/driver/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_event/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_system/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_timer/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_wifi/sdkconfig.rename /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename /home/mithras/esp/esp-idf/components/freemodbus/sdkconfig.rename /home/mithras/esp/esp-idf/components/freertos/sdkconfig.rename /home/mithras/esp/esp-idf/components/lwip/sdkconfig.rename /home/mithras/esp/esp-idf/components/pthread/sdkconfig.rename /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename /home/mithras/esp/esp-idf/components/vfs/sdkconfig.rename",
|
||||||
"IDF_CMAKE": "y",
|
"IDF_CMAKE": "y",
|
||||||
|
@ -14687,6 +14687,807 @@
|
|||||||
"id": "component-config-supplicant",
|
"id": "component-config-supplicant",
|
||||||
"title": "Supplicant",
|
"title": "Supplicant",
|
||||||
"type": "menu"
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice LVGL_PREDEFINED_DISPLAY>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_DISPLAY_NONE",
|
||||||
|
"name": "LVGL_PREDEFINED_DISPLAY_NONE",
|
||||||
|
"range": null,
|
||||||
|
"title": "None",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice LVGL_PREDEFINED_DISPLAY>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_DISPLAY_WROVER4",
|
||||||
|
"name": "LVGL_PREDEFINED_DISPLAY_WROVER4",
|
||||||
|
"range": null,
|
||||||
|
"title": "ESP-Wrover-KIT v4.1",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice LVGL_PREDEFINED_DISPLAY>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_DISPLAY_M5STACK",
|
||||||
|
"name": "LVGL_PREDEFINED_DISPLAY_M5STACK",
|
||||||
|
"range": null,
|
||||||
|
"title": "M5Stack",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice LVGL_PREDEFINED_DISPLAY>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_DISPLAY_ERTFT0356",
|
||||||
|
"name": "LVGL_PREDEFINED_DISPLAY_ERTFT0356",
|
||||||
|
"range": null,
|
||||||
|
"title": "ER-TFT035-6",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice LVGL_PREDEFINED_DISPLAY>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING",
|
||||||
|
"name": "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING",
|
||||||
|
"range": null,
|
||||||
|
"title": "Adafruit 3.5 Featherwing",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Select predefined display configuration",
|
||||||
|
"id": "component-config-littlevgl-lvgl-tft-display-controller-select-predefined-display-configuration",
|
||||||
|
"name": "LVGL_PREDEFINED_DISPLAY",
|
||||||
|
"title": "Select predefined display configuration",
|
||||||
|
"type": "choice"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_PINS_NONE",
|
||||||
|
"name": "LVGL_PREDEFINED_PINS_NONE",
|
||||||
|
"range": null,
|
||||||
|
"title": "None",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_PINS_38V4",
|
||||||
|
"name": "LVGL_PREDEFINED_PINS_38V4",
|
||||||
|
"range": null,
|
||||||
|
"title": "ESP32 DevKit v4 (38 GPIOS)",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_PINS_30",
|
||||||
|
"name": "LVGL_PREDEFINED_PINS_30",
|
||||||
|
"range": null,
|
||||||
|
"title": "ESP32 Devkit v1 - 30 pins",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_PREDEFINED_PINS_38V1",
|
||||||
|
"name": "LVGL_PREDEFINED_PINS_38V1",
|
||||||
|
"range": null,
|
||||||
|
"title": "Dev Board with 38 pins",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Select predefined board pin out configuration.",
|
||||||
|
"id": "component-config-littlevgl-lvgl-tft-display-controller-select-predefined-board-pinouts",
|
||||||
|
"name": null,
|
||||||
|
"title": "Select predefined board pinouts",
|
||||||
|
"type": "choice"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_CONTROLLER",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_CONTROLLER",
|
||||||
|
"range": null,
|
||||||
|
"title": null,
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9341",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9341",
|
||||||
|
"range": null,
|
||||||
|
"title": "ILI9341",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9488",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9488",
|
||||||
|
"range": null,
|
||||||
|
"title": "ILI9488",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_CONTROLLER_ST7789",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_CONTROLLER_ST7789",
|
||||||
|
"range": null,
|
||||||
|
"title": "ST7789",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_CONTROLLER_HX8357",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_CONTROLLER_HX8357",
|
||||||
|
"range": null,
|
||||||
|
"title": "HX8357",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Select the controller for your display.",
|
||||||
|
"id": "component-config-littlevgl-lvgl-tft-display-controller-select-a-display-controller-model-",
|
||||||
|
"name": null,
|
||||||
|
"title": "Select a display controller model.",
|
||||||
|
"type": "choice"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_SPI_HSPI",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_SPI_HSPI",
|
||||||
|
"range": null,
|
||||||
|
"title": "HSPI",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TFT_DISPLAY_SPI_VSPI",
|
||||||
|
"name": "LVGL_TFT_DISPLAY_SPI_VSPI",
|
||||||
|
"range": null,
|
||||||
|
"title": "VSPI",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Select the SPI Bus the TFT Display is attached to.",
|
||||||
|
"id": "component-config-littlevgl-lvgl-tft-display-controller-tft-spi-bus-",
|
||||||
|
"name": null,
|
||||||
|
"title": "TFT SPI Bus.",
|
||||||
|
"type": "choice"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_DISPLAY_WIDTH",
|
||||||
|
"name": "LVGL_DISPLAY_WIDTH",
|
||||||
|
"range": null,
|
||||||
|
"title": "TFT display width in pixels.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_DISPLAY_HEIGHT",
|
||||||
|
"name": "LVGL_DISPLAY_HEIGHT",
|
||||||
|
"range": null,
|
||||||
|
"title": "TFT display height in pixels.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "If text is backwards on your display, try enabling this.",
|
||||||
|
"id": "LVGL_INVERT_DISPLAY",
|
||||||
|
"name": "LVGL_INVERT_DISPLAY",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert display.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Enable controlling the display backlight using an GPIO",
|
||||||
|
"id": "LVGL_ENABLE_BACKLIGHT_CONTROL",
|
||||||
|
"name": "LVGL_ENABLE_BACKLIGHT_CONTROL",
|
||||||
|
"range": null,
|
||||||
|
"title": "Enable control of the display backlight by using an GPIO.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Some backlights are turned on with a high signal, others held low.\nIf enabled, a value of 1 will be sent to the display to enable the backlight,\notherwise a 0 will be expected to enable it.",
|
||||||
|
"id": "LVGL_BACKLIGHT_ACTIVE_LVL",
|
||||||
|
"name": "LVGL_BACKLIGHT_ACTIVE_LVL",
|
||||||
|
"range": null,
|
||||||
|
"title": "Is backlight turn on with a HIGH (1) logic level?",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the display MOSI pin here.",
|
||||||
|
"id": "LVGL_DISP_SPI_MOSI",
|
||||||
|
"name": "LVGL_DISP_SPI_MOSI",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for MOSI (Master Out Slave In)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the display CLK pin here.",
|
||||||
|
"id": "LVGL_DISP_SPI_CLK",
|
||||||
|
"name": "LVGL_DISP_SPI_CLK",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for CLK (SCK / Serial Clock)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the display CS pin here.",
|
||||||
|
"id": "LVGL_DISP_SPI_CS",
|
||||||
|
"name": "LVGL_DISP_SPI_CS",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for CS (Slave Select)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the display DC pin here.",
|
||||||
|
"id": "LVGL_DISP_PIN_DC",
|
||||||
|
"name": "LVGL_DISP_PIN_DC",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for DC (Data / Command)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the display Reset pin here.",
|
||||||
|
"id": "LVGL_DISP_PIN_RST",
|
||||||
|
"name": "LVGL_DISP_PIN_RST",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for Reset",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the display BCLK (LED) pin here.",
|
||||||
|
"id": "LVGL_DISP_PIN_BCKL",
|
||||||
|
"name": "LVGL_DISP_PIN_BCKL",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for Backlight Control",
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-tft-display-controller-display-pin-assignments",
|
||||||
|
"title": "Display Pin Assignments",
|
||||||
|
"type": "menu"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-tft-display-controller",
|
||||||
|
"title": "LittlevGL (LVGL) TFT Display controller",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER",
|
||||||
|
"range": null,
|
||||||
|
"title": null,
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER_NONE",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER_NONE",
|
||||||
|
"range": null,
|
||||||
|
"title": "None",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER_XPT2046",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER_XPT2046",
|
||||||
|
"range": null,
|
||||||
|
"title": "XPT2046",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER_FT6X06",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER_FT6X06",
|
||||||
|
"range": null,
|
||||||
|
"title": "FT6X06",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER_STMPE610",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER_STMPE610",
|
||||||
|
"range": null,
|
||||||
|
"title": "STMPE610",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Select the controller for your touch panel.",
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-select-a-touch-panel-controller-model-",
|
||||||
|
"name": null,
|
||||||
|
"title": "Select a touch panel controller model.",
|
||||||
|
"type": "choice"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel MISO pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_MISO",
|
||||||
|
"name": "LVGL_TOUCH_SPI_MISO",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for MISO (Master In Slave Out)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel MOSI pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_MOSI",
|
||||||
|
"name": "LVGL_TOUCH_SPI_MOSI",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for MOSI (Master Out Slave In)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel CLK pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_CLK",
|
||||||
|
"name": "LVGL_TOUCH_SPI_CLK",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for CLK (SCK / Serial Clock)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel CS pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_CS",
|
||||||
|
"name": "LVGL_TOUCH_SPI_CS",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for CS (Slave Select)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel CS pin here.",
|
||||||
|
"id": "LVGL_TOUCH_PIN_IRQ",
|
||||||
|
"name": "LVGL_TOUCH_PIN_IRQ",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for IRQ (Interrupt Request)",
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-xpt2046-pin-assignments",
|
||||||
|
"title": "Touchpanel (XPT2046) Pin Assignments",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the I2C touchpanel SDA pin here.",
|
||||||
|
"id": "LVGL_TOUCH_I2C_SDA",
|
||||||
|
"name": "LVGL_TOUCH_I2C_SDA",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for SDA (I2C)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the I2C touchpanel SCL pin here.",
|
||||||
|
"id": "LVGL_TOUCH_I2C_SCL",
|
||||||
|
"name": "LVGL_TOUCH_I2C_SCL",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for clock signal SCL (I2C)",
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-ft6x06-pin-assignments",
|
||||||
|
"title": "Touchpanel (FT6X06) Pin Assignments",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel MISO pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_MISO",
|
||||||
|
"name": "LVGL_TOUCH_SPI_MISO",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for MISO (Master In Slave Out)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel MOSI pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_MOSI",
|
||||||
|
"name": "LVGL_TOUCH_SPI_MOSI",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for MOSI (Master Out Slave In)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel CLK pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_CLK",
|
||||||
|
"name": "LVGL_TOUCH_SPI_CLK",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for CLK (SCK / Serial Clock)",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Configure the touchpanel CS pin here.",
|
||||||
|
"id": "LVGL_TOUCH_SPI_CS",
|
||||||
|
"name": "LVGL_TOUCH_SPI_CS",
|
||||||
|
"range": [
|
||||||
|
0,
|
||||||
|
39
|
||||||
|
],
|
||||||
|
"title": "GPIO for CS (Slave Select)",
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-stmpe610-pin-assignments",
|
||||||
|
"title": "Touchpanel (STMPE610) Pin Assignments",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER_SPI_HSPI",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER_SPI_HSPI",
|
||||||
|
"range": null,
|
||||||
|
"title": "HSPI",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": "<choice>",
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_CONTROLLER_SPI_VSPI",
|
||||||
|
"name": "LVGL_TOUCH_CONTROLLER_SPI_VSPI",
|
||||||
|
"range": null,
|
||||||
|
"title": "VSPI",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": "Select the SPI Bus the TFT Display is attached to.",
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-spi-bus-touch-controller-spi-bus-",
|
||||||
|
"name": null,
|
||||||
|
"title": "Touch Controller SPI Bus.",
|
||||||
|
"type": "choice"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-spi-bus",
|
||||||
|
"title": "Touchpanel SPI Bus",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_X_MIN",
|
||||||
|
"name": "LVGL_TOUCH_X_MIN",
|
||||||
|
"range": null,
|
||||||
|
"title": "Minimum X coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_Y_MIN",
|
||||||
|
"name": "LVGL_TOUCH_Y_MIN",
|
||||||
|
"range": null,
|
||||||
|
"title": "Minimum Y coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_X_MAX",
|
||||||
|
"name": "LVGL_TOUCH_X_MAX",
|
||||||
|
"range": null,
|
||||||
|
"title": "Maximum X coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_Y_MAX",
|
||||||
|
"name": "LVGL_TOUCH_Y_MAX",
|
||||||
|
"range": null,
|
||||||
|
"title": "Maximum Y coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_INVERT_X",
|
||||||
|
"name": "LVGL_TOUCH_INVERT_X",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert X coordinate value.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_INVERT_Y",
|
||||||
|
"name": "LVGL_TOUCH_INVERT_Y",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert Y coordinate value.",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-xpt2046-",
|
||||||
|
"title": "Touchpanel Configuration (XPT2046)",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_FT6X36_SWAPXY",
|
||||||
|
"name": "LVGL_FT6X36_SWAPXY",
|
||||||
|
"range": null,
|
||||||
|
"title": "Swap X with Y coordinate.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_FT6X36_INVERT_X",
|
||||||
|
"name": "LVGL_FT6X36_INVERT_X",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert X coordinate value.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_FT6X36_INVERT_Y",
|
||||||
|
"name": "LVGL_FT6X36_INVERT_Y",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert Y coordinate value.",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-ft6x06-",
|
||||||
|
"title": "Touchpanel Configuration (FT6X06)",
|
||||||
|
"type": "menu"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_X_MIN",
|
||||||
|
"name": "LVGL_TOUCH_X_MIN",
|
||||||
|
"range": null,
|
||||||
|
"title": "Minimum X coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_Y_MIN",
|
||||||
|
"name": "LVGL_TOUCH_Y_MIN",
|
||||||
|
"range": null,
|
||||||
|
"title": "Minimum Y coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_X_MAX",
|
||||||
|
"name": "LVGL_TOUCH_X_MAX",
|
||||||
|
"range": null,
|
||||||
|
"title": "Maximum X coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_Y_MAX",
|
||||||
|
"name": "LVGL_TOUCH_Y_MAX",
|
||||||
|
"range": null,
|
||||||
|
"title": "Maximum Y coordinate value.",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_XY_SWAP",
|
||||||
|
"name": "LVGL_TOUCH_XY_SWAP",
|
||||||
|
"range": null,
|
||||||
|
"title": "Swap XY.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_INVERT_X",
|
||||||
|
"name": "LVGL_TOUCH_INVERT_X",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert X coordinate value.",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"children": [],
|
||||||
|
"depends_on": null,
|
||||||
|
"help": null,
|
||||||
|
"id": "LVGL_TOUCH_INVERT_Y",
|
||||||
|
"name": "LVGL_TOUCH_INVERT_Y",
|
||||||
|
"range": null,
|
||||||
|
"title": "Invert Y coordinate value.",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-stmpe610-",
|
||||||
|
"title": "Touchpanel Configuration (STMPE610)",
|
||||||
|
"type": "menu"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"depends_on": null,
|
||||||
|
"id": "component-config-littlevgl-lvgl-touch-controller",
|
||||||
|
"title": "LittlevGL (LVGL) Touch controller",
|
||||||
|
"type": "menu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"depends_on": null,
|
"depends_on": null,
|
||||||
|
File diff suppressed because one or more lines are too long
@ -342,6 +342,32 @@
|
|||||||
#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16
|
#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16
|
||||||
#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30
|
#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30
|
||||||
#define CONFIG_WPA_MBEDTLS_CRYPTO 1
|
#define CONFIG_WPA_MBEDTLS_CRYPTO 1
|
||||||
|
#define CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4 1
|
||||||
|
#define CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI 1
|
||||||
|
#define CONFIG_LVGL_DISPLAY_WIDTH 320
|
||||||
|
#define CONFIG_LVGL_DISPLAY_HEIGHT 240
|
||||||
|
#define CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL 1
|
||||||
|
#define CONFIG_LVGL_DISP_SPI_MOSI 23
|
||||||
|
#define CONFIG_LVGL_DISP_SPI_CLK 19
|
||||||
|
#define CONFIG_LVGL_DISP_SPI_CS 22
|
||||||
|
#define CONFIG_LVGL_DISP_PIN_DC 21
|
||||||
|
#define CONFIG_LVGL_DISP_PIN_RST 18
|
||||||
|
#define CONFIG_LVGL_DISP_PIN_BCKL 5
|
||||||
|
#define CONFIG_LVGL_TOUCH_SPI_MISO 19
|
||||||
|
#define CONFIG_LVGL_TOUCH_SPI_MOSI 23
|
||||||
|
#define CONFIG_LVGL_TOUCH_SPI_CLK 18
|
||||||
|
#define CONFIG_LVGL_TOUCH_SPI_CS 5
|
||||||
|
#define CONFIG_LVGL_TOUCH_PIN_IRQ 25
|
||||||
|
#define CONFIG_LVGL_TOUCH_I2C_SDA 21
|
||||||
|
#define CONFIG_LVGL_TOUCH_I2C_SCL 22
|
||||||
|
#define CONFIG_LVGL_TOUCH_X_MIN 200
|
||||||
|
#define CONFIG_LVGL_TOUCH_Y_MIN 120
|
||||||
|
#define CONFIG_LVGL_TOUCH_X_MAX 1900
|
||||||
|
#define CONFIG_LVGL_TOUCH_Y_MAX 1900
|
||||||
|
#define CONFIG_LVGL_TOUCH_INVERT_X 1
|
||||||
|
#define CONFIG_LVGL_TOUCH_INVERT_Y 1
|
||||||
|
#define CONFIG_LVGL_FT6X36_SWAPXY 1
|
||||||
|
#define CONFIG_LVGL_FT6X36_INVERT_Y 1
|
||||||
|
|
||||||
/* List of deprecated options */
|
/* List of deprecated options */
|
||||||
#define CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC
|
#define CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC
|
||||||
|
@ -351,6 +351,37 @@
|
|||||||
"LOG_DEFAULT_LEVEL_WARN": false,
|
"LOG_DEFAULT_LEVEL_WARN": false,
|
||||||
"LOG_TIMESTAMP_SOURCE_RTOS": true,
|
"LOG_TIMESTAMP_SOURCE_RTOS": true,
|
||||||
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
|
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
|
||||||
|
"LVGL_DISPLAY_HEIGHT": 240,
|
||||||
|
"LVGL_DISPLAY_WIDTH": 320,
|
||||||
|
"LVGL_DISP_PIN_BCKL": 5,
|
||||||
|
"LVGL_DISP_PIN_DC": 21,
|
||||||
|
"LVGL_DISP_PIN_RST": 18,
|
||||||
|
"LVGL_DISP_SPI_CLK": 19,
|
||||||
|
"LVGL_DISP_SPI_CS": 22,
|
||||||
|
"LVGL_DISP_SPI_MOSI": 23,
|
||||||
|
"LVGL_ENABLE_BACKLIGHT_CONTROL": true,
|
||||||
|
"LVGL_FT6X36_INVERT_Y": true,
|
||||||
|
"LVGL_FT6X36_SWAPXY": true,
|
||||||
|
"LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING": false,
|
||||||
|
"LVGL_PREDEFINED_DISPLAY_ERTFT0356": false,
|
||||||
|
"LVGL_PREDEFINED_DISPLAY_M5STACK": false,
|
||||||
|
"LVGL_PREDEFINED_DISPLAY_NONE": false,
|
||||||
|
"LVGL_PREDEFINED_DISPLAY_WROVER4": true,
|
||||||
|
"LVGL_TFT_DISPLAY_SPI_HSPI": true,
|
||||||
|
"LVGL_TFT_DISPLAY_SPI_VSPI": false,
|
||||||
|
"LVGL_TOUCH_I2C_SCL": 22,
|
||||||
|
"LVGL_TOUCH_I2C_SDA": 21,
|
||||||
|
"LVGL_TOUCH_INVERT_X": true,
|
||||||
|
"LVGL_TOUCH_INVERT_Y": true,
|
||||||
|
"LVGL_TOUCH_PIN_IRQ": 25,
|
||||||
|
"LVGL_TOUCH_SPI_CLK": 18,
|
||||||
|
"LVGL_TOUCH_SPI_CS": 5,
|
||||||
|
"LVGL_TOUCH_SPI_MISO": 19,
|
||||||
|
"LVGL_TOUCH_SPI_MOSI": 23,
|
||||||
|
"LVGL_TOUCH_X_MAX": 1900,
|
||||||
|
"LVGL_TOUCH_X_MIN": 200,
|
||||||
|
"LVGL_TOUCH_Y_MAX": 1900,
|
||||||
|
"LVGL_TOUCH_Y_MIN": 120,
|
||||||
"LWIP_AUTOIP": false,
|
"LWIP_AUTOIP": false,
|
||||||
"LWIP_BROADCAST_PING": false,
|
"LWIP_BROADCAST_PING": false,
|
||||||
"LWIP_DHCPS_LEASE_UNIT": 60,
|
"LWIP_DHCPS_LEASE_UNIT": 60,
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/esp-idf/app_trace/libapp_trace.a
Normal file
BIN
build/esp-idf/app_trace/libapp_trace.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/esp-idf/app_update/libapp_update.a
Normal file
BIN
build/esp-idf/app_update/libapp_update.a
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/esp-idf/asio/libasio.a
Normal file
BIN
build/esp-idf/asio/libasio.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/esp-idf/bootloader_support/libbootloader_support.a
Normal file
BIN
build/esp-idf/bootloader_support/libbootloader_support.a
Normal file
Binary file not shown.
BIN
build/esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj
Normal file
BIN
build/esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj
Normal file
Binary file not shown.
BIN
build/esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj
Normal file
BIN
build/esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj
Normal file
Binary file not shown.
BIN
build/esp-idf/ca/libca.a
Normal file
BIN
build/esp-idf/ca/libca.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build/esp-idf/cbor/libcbor.a
Normal file
BIN
build/esp-idf/cbor/libcbor.a
Normal file
Binary file not shown.
@ -110,6 +110,12 @@ if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
|||||||
include("/home/mithras/esp/bakalarka/build/esp-idf/ca/cmake_install.cmake")
|
include("/home/mithras/esp/bakalarka/build/esp-idf/ca/cmake_install.cmake")
|
||||||
include("/home/mithras/esp/bakalarka/build/esp-idf/cmd_nvs/cmake_install.cmake")
|
include("/home/mithras/esp/bakalarka/build/esp-idf/cmd_nvs/cmake_install.cmake")
|
||||||
include("/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/cmake_install.cmake")
|
include("/home/mithras/esp/bakalarka/build/esp-idf/cmd_system/cmake_install.cmake")
|
||||||
|
include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl/cmake_install.cmake")
|
||||||
|
include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake")
|
||||||
|
include("/home/mithras/esp/bakalarka/build/esp-idf/lv_examples/cmake_install.cmake")
|
||||||
|
include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl_tft/cmake_install.cmake")
|
||||||
|
include("/home/mithras/esp/bakalarka/build/esp-idf/lvgl_touch/cmake_install.cmake")
|
||||||
|
include("/home/mithras/esp/bakalarka/build/esp-idf/display/cmake_install.cmake")
|
||||||
include("/home/mithras/esp/bakalarka/build/esp-idf/wifi/cmake_install.cmake")
|
include("/home/mithras/esp/bakalarka/build/esp-idf/wifi/cmake_install.cmake")
|
||||||
include("/home/mithras/esp/bakalarka/build/esp-idf/https_server/cmake_install.cmake")
|
include("/home/mithras/esp/bakalarka/build/esp-idf/https_server/cmake_install.cmake")
|
||||||
|
|
||||||
|
BIN
build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj
Normal file
BIN
build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj
Normal file
Binary file not shown.
BIN
build/esp-idf/cmd_nvs/libcmd_nvs.a
Normal file
BIN
build/esp-idf/cmd_nvs/libcmd_nvs.a
Normal file
Binary file not shown.
Binary file not shown.
BIN
build/esp-idf/cmd_system/libcmd_system.a
Normal file
BIN
build/esp-idf/cmd_system/libcmd_system.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user