HiI have a project where I am using RAM_D2 for DMA buffers and the .text section is loaded into QSPI flash. I need to use STM32_Programmer_CLI in my development.I added section in .ld file:/* Specify the memory areas */
MEMORY
{
FLASH (rx) : OR...
HiMy work around to this problem is to add include path in the CMakeLists.txt after target is configured: add_st_target_properties(${PROJECT_NAME})
target_include_directories(
${PROJECT_NAME} PRIVATE
"$<$<AND:$<CONFIG:Debug>,$<COMPILE_LANGUA...
Found a way to regenerate the st-project.cmake based on https://community.st.com/t5/other-tools-mcus/including-external-header-files-in-project/m-p/54039/highlight/true#M15To regenerate he CMake files:1) Open STM32 VS CODE EXTENSION in a side bar or ...