idf_component_optional_requires(PUBLIC app_trace) elseif(CONFIG_APPTRACE_ENABLE) # [refactor-todo]: port.c has a dependency on esp_apptrace_init, for running it on APP CPU. # this should be resolved when link-time registration of startup functions is added. ...
idf_component_optional_requires(PUBLIC app_trace) elseif(CONFIG_APPTRACE_ENABLE) # [refactor-todo]: port.c has a dependency on esp_apptrace_init, for running it on APP CPU. # this should be resolved when link-time registration of startup functions is added. ...
idf_component_optional_requires(PUBLIC app_trace) elseif(CONFIG_APPTRACE_ENABLE) # [refactor-todo]: port.c has a dependency on esp_apptrace_init, for running it on APP CPU. # this should be resolved when link-time registration of startup functions is added. ...
target_link_libraries(${COMPONENT_LIB} PUBLIC -mfix-esp32-psram-cache-strategy=nops) if(NOT BOOTLOADER_BUILD) if(CONFIG_SPIRAM) idf_component_optional_requires(PRIVATE esp_psram) endif() endif() 12 changes: 7 additions & 5 deletions 12 components/esp_hw_support/esp_memory_utils.c Show ...
idf_component_optional_requires(PRIVATE esp_psram) endif() target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format") endif()1 change: 0 additions & 1 deletion 1 components/spi_flash/test/CMakeLists.txt Original file line numberDiff line numberDiff line change @@ -2,4 +2,3 @@ id...
3 NonsupportedOS WhentheOSthatisneededisnotyetsupported,theobvioussolutionistoporttheOS,howeverthisgenerallytakesbetweentwoandfourweeksandrequiresOSknowledgeAnintermediatestepistofirstofallgetaRhapsodymodeltoexecuteonthetargetwithouttheOS.Thiscangenerallybeachievedinaboutonedayanddoingsogivestheuserconfidenceinthe...
TheCOMPONENT_REQUIRESlist can be empty because some very common components (like newlib for libc, freertos for RTOS functions, etc) are always required by all components. This list is found in the project-level variableCOMPONENT_REQUIRES_COMMON. ...
TheCOMPONENT_REQUIRESlist can be empty because some very common components (like newlib for libc, freertos for RTOS functions, etc) are always required by all components. This list is found in the project-level variableCOMPONENT_REQUIRES_COMMON. ...
idf_component_optional_requires(PRIVATE app_trace) endif() if(CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME) # [refactor-todo]: port.c esp_startup_start_app_common() calls esp_gdbstub_init() idf_component_optional_requires(PRIVATE esp_gdbstub) endif() if(CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIM...
idf_component_optional_requires(PRIVATE nvs_flash) endif() if(CONFIG_OPENTHREAD_ENABLED) idf_component_optional_requires(PRIVATE openthread) endif() if(CONFIG_ETH_ENABLED) idf_component_optional_requires(PRIVATE esp_eth) endif() if(${target} STREQUAL "linux") set(THREADS_PREFER_PTHREAD_FLAG ON)...